home *** CD-ROM | disk | FTP | other *** search
/ Softline PAY-CD / Softline PAY-CD(1994).iso / programm / profi / demo / disk1 / error.sq_ / error.sq
Encoding:
Text File  |  1994-01-03  |  624.4 KB  |  15,778 lines

  1. 1.0.0 SQLBase Errors Guide
  2. Errors that occur because of FETCH operations are documented in this section
  3. of the Error Guide.  These errors are generally more informational than
  4. actual errors.  A FETCH operation can be disguised by the various frontend
  5. products, but basically, these errors are all the result of making the
  6. sqlfet API function call.
  7.  
  8. 00001 FET EOF Einlesen beendet
  9.  
  10.       Reason: A FETCH has attempted to fetch beyond the end of a result set.
  11.  
  12.       Remedy: None, informational only.
  13.  
  14. 00002 FET UPD Zeile wurde aktualisiert
  15.  
  16.       Reason: A FETCH in result set mode returns this code if the row has been
  17.           updated at least once some time in the past since the result set
  18.           was formed, but cannot know when or how often.
  19.  
  20.       Remedy: Add the ROWID to the select list.  The ROWID retrieved will be
  21.           the ROWID of the newly update row.  The application should deal
  22.           with rows that have been modified while part of a result set
  23.           appropriately.
  24.  
  25. 00003 FET NF  Zeile nicht gefunden
  26.  
  27.       Reason: A FETCH in result set mode returns this code if the row has been
  28.           deleted since the result set was formed.
  29.  
  30.       Remedy: None.  This error code is informational and lets the application
  31.           know that the row has been deleted from the database since the
  32.           current result set was formed.
  33.  
  34. 00004 FET COC NUR INTERN VERWENDET: Zeile durch Cursorlauf aktualisiert
  35.  
  36.       Reason: This is error is only used internally by the SQLBase system.
  37.  
  38.       Remedy: None.  This error code should never occur.  If you get this
  39.           error, contact your local Gupta Technologies certified
  40.           technical support center.
  41.  
  42.  
  43. The errors documented in this section of the Error Guide are for general SQL
  44. errors or Application Programming Interface errors.
  45.  
  46. 00101 SQL TNF ▄bersetzungsfehler nicht gefunden
  47.  
  48.       Reason: The application program was attempting to convert a SQLBase
  49.           error return code to another "resultant" error code and the
  50.           original SQLBase error return code could not be found in the
  51.           translation file.  This error indicates that the translation
  52.           table was found but the error within the translation table was
  53.           not found.
  54.  
  55.       Remedy: Add the SQLBase error code to the error translation file or add
  56.           an asterisk as a global error catch-all.    The translation table
  57.           consists of x,y entries, where x is the SQLBase code to be
  58.           converted to y.  An entry of *,999, for example, will return a
  59.           translated error code of 999 instead of this message.  See the
  60.           SQLBase configuration parameter ERRORFILE= for more information
  61.           on the translation file and its usage.
  62.  
  63. 00102 SQL STS Auswahlpuffer zu klein
  64.  
  65.       Reason: One of the application's sqlssb function calls set up a fetch
  66.           buffer that is insufficient to hold the data that was fetched.
  67.  
  68.       Remedy: Determine which select buffer is too small and increase the size
  69.           of that buffer.  Checking the fetch status code for each column
  70.           selected can help determine the column with the problem.
  71.  
  72. 00103 SQL DNC OS/2-Operation L÷schen wurde nicht ausgefⁿhrt
  73.  
  74.       Reason: The application program running at a client workstation is
  75.           attempting to perform a cancel API database request using the
  76.           API function call sqlcan() and the cancel operation was not
  77.           successful.
  78.  
  79.       Remedy: Verify that you are using this function from an OS/2 client
  80.           workstation communicating with a OS/2 SQLBase Server.  Try the
  81.           cancel operation again.
  82.  
  83. 00104 SQL DNN Es wurde versucht, nicht numerische Daten in ein numerisches Feld einzulesen.
  84.  
  85.       Reason: One of the application's sqlssb function calls set up a fetch
  86.           buffer that is defined as numeric but the data that was fetched
  87.           cannot be converted to a numeric value.
  88.  
  89.       Remedy: Modify the program or data so that non-numeric data is not
  90.           attempted to be fetched into a numeric format.
  91.  
  92. 00105 SQL NOF Es wurde versucht, numerische Daten in ein zu kleines numerisches Feld einzulesen.▄
  93.  
  94.       Reason: One of the application's sqlssb function calls set up a fetch
  95.           buffer that is defined as numeric but the buffer provided is not
  96.           large enough to hold the numeric value.
  97.  
  98.       Remedy: Modify the program so the the select buffer is large enough to
  99.           accomodate the fetched value.
  100.  
  101. 00106 SQL DTN Fehler bei der Anwendungsprogrammierung: Datentyp wird nicht unterstⁿtzt
  102.  
  103.       Reason: The application program is attempting to bind or set up a select
  104.           buffer and is specifying a program that is not supported by
  105.           SQLBase.
  106.  
  107.       Remedy: Verify that the program data type specified in the sqlssb,
  108.           sqlbnn, and sqlbnd calls are valid.  Valid program data types
  109.           can be found in SQL.H file.
  110.  
  111. 00107 SQL LNE Fehler bei der Anwendungsprogrammierung: Memooperation nicht beendet
  112.  
  113.       Reason: The application program is attempting to perform a non-long
  114.           operation before ending the long operation that is in progress.
  115.  
  116.       Remedy: Perform an end long operation (sqlelo) before proceeding with
  117.           any other operations.
  118.  
  119. 00108 SQL AFE Zeile wurde bereits vor der Aktion Nach-hinten-holen eingelesen
  120.  
  121.       Reason: The application program is attempting to perform an enable fetch
  122.           backwards (sqlefb) function call after already fetching forward.
  123.  
  124.       Remedy: Correct the application program.    The enable fetch backwards
  125.           (sqlefb) function must be called before any fetch is performed.
  126.  
  127. 00109 SQL NOB Datenbank MAIN steht allgemeinem Zugriff nicht offen
  128.  
  129.       Reason: Cannot create, delete, install, or deinstall the MAIN database.
  130.           Furthermore, you cannot shutdown or set the default database
  131.           name to the MAIN database either.
  132.  
  133.       Remedy: None.  The MAIN database is not open to the public.  The MAIN
  134.           database cannot be created, deleted, installed, or deinstalled.
  135.           The main database cannot be shutdown by a user and a user cannot
  136.           have the MAIN database as the default database name.
  137.  
  138. 00110 SQL LNS Auf Memospalten kann in dieser Datenbank nicht zugegriffen werden
  139.  
  140.       Reason: This error is currently undocumented.
  141.  
  142.       Remedy: Contact your local Gupta Technologies certified technical
  143.           support center for assistance.
  144.  
  145. 00111 SQL 011 NICHT VERWENDET
  146.  
  147.       Reason: This is error code is currently not used by the SQLBase system.
  148.  
  149.       Remedy: None.  This error code should never occur.  If you get this
  150.           error, contact your local Gupta Technologies certified
  151.           technical support center.
  152.  
  153. 00112 SQL LBS Fehler bei der Anwendungsprogrammierung: Memo-Zuordnung besteht bereits
  154.  
  155.       Reason: The application program is attempting to perform a bind long
  156.           operation and one has already been performed.
  157.  
  158.       Remedy: Correct the application program.    Verify that the long data was
  159.           only bound once.
  160.  
  161. 00113 SQL TMB Fehler bei der Anwendungsprogrammierung: Zuviele Zuordnungen
  162.  
  163.       Reason: The application program is attempting to perform a bind
  164.           operation and has exceeded the number of binds necessary.
  165.  
  166.       Remedy: Correct the application program.    The number of bind function
  167.           calls should equal the number of bind variables.
  168.  
  169. 00114 SQL IVC Fehler bei der Anwendungsprogrammierung: Ungⁿltiger Bindename oder Bindennummer
  170.  
  171.       Reason: The application program is attempting to perform a bind
  172.           operation and it has not correctly specified the bind name or
  173.           the bind number.
  174.  
  175.       Remedy: Correct the application program.    Verify that the bind name
  176.           pointer or bind number is correctly specified.
  177.  
  178. 00115 SQL PDT Fehler bei der Anwendungsprogrammierung: Ungⁿltiger Programmdatentyp
  179.  
  180.       Reason: The application program is attempting to perform a set select
  181.           buffer (sqlssb) function call and has specified an invalid
  182.           program data type.
  183.  
  184.       Remedy: Correct the set select buffer (sqlssb) function call in the
  185.           application program.  Verify that the program data type is one
  186.           of the program data types defined in the file SQL.H.
  187.  
  188. 00116 SQL MLB Programmierfehler: Memo-Zuordnung fehlt, bevor Memo geschrieben wurde
  189.  
  190.       Reason: The application program is attempting to perform a write long
  191.           (sqlwlo) function call and no long data has been bound.
  192.  
  193.       Remedy: Correct the the application program.  Long data must be bound to
  194.           a write long operation before attempting to write it with either
  195.           a bind long data by number (sqlbln) or bind long data by data
  196.           name (sqlbld) function call.
  197.  
  198. 00117 SQL IPB Ungⁿltiger (Null) Parameterpufferzeiger
  199.  
  200.       Reason: This error is currently undocumented.
  201.  
  202.       Remedy: Contact your local Gupta Technologies certified technical
  203.           support center for assistance.
  204.  
  205. 00118 SQL MSC Mu▀ erfolgreicher Kompilierung einer SELECT-Anweisung folgen
  206.  
  207.       Reason: The application program is attempting to call sqldes, sqldsc, or
  208.           sqlfqn without performing a successfully compile of a SELECT
  209.           statement.
  210.  
  211.       Remedy: Correct the application program.    Verify that a successful
  212.           compile of a SELECT statement precedes the sqldes, sqldsc, or
  213.           sqlfqn function call.
  214.  
  215. 00119 SQL DND Eingelesene Daten sind nicht in datums- oder zeitΣhnlichem Format
  216.  
  217.       Reason: The application program is attempting to fetch data into a
  218.           buffer with a program data type of date (SQLPDAT) and the data
  219.           in the database is not defined as a DATETIME, TIMESTAMP, DATE,
  220.           or TIME field.
  221.  
  222.       Remedy: Correct the set select buffer (sqlssb) function call so the
  223.           field does not ask for a program data type of date.
  224.  
  225. 00120 SQL 020 NICHT VERWENDET
  226.  
  227.       Reason: This is error code is currently not used by the SQLBase system.
  228.  
  229.       Remedy: None.  This error code should never occur.  If you get this
  230.           error, contact your local Gupta Technologies certified
  231.           technical support center.
  232.  
  233. 00121 SQL IVD Es wurde versucht, ein ungⁿltiges Datum einzufⁿgen oder mit einem ungⁿltigen Datum zu aktualisieren
  234.  
  235.       Reason: The application program is attempting to insert or update a date
  236.           that is invalid.
  237.  
  238.       Remedy: Verify that the date is a valid date.
  239.  
  240. 00122 SQL MVC Anzahl der SELECT- und INSERT-Spalten stimmen nicht ⁿberein
  241.  
  242.       Reason: The application program is attempting to perform a copy (sqlcpy)
  243.           function call and the number of variables in the select list of
  244.           the SELECT statement does not equal the number of variables
  245.           being inserted by the INSERT statement.
  246.  
  247.       Remedy: Correct the application program so that the number of variables
  248.           in the select list of the SELECT statement match the number of
  249.           variables in the INSERT statement.
  250.  
  251. 00123 SQL 023 NICHT VERWENDET
  252.  
  253.       Reason: This is error code is currently not used by the SQLBase system.
  254.  
  255.       Remedy: None.  This error code should never occur.  If you get this
  256.           error, contact your local Gupta Technologies certified
  257.           technical support center.
  258.  
  259. 00124 SQL CBR Kein Speicherplatz mehr auf der Client-Workstation (SQL CBR)
  260.  
  261.       Reason: The application has run out of memory at the client workstation.
  262.  
  263.       Remedy: Check available memory at the client workstation.  Attempt to
  264.           make more memory available.
  265.  
  266. 00125 SQL NTL Namenparameter ist zu lang
  267.  
  268.       Reason: The application program is attempting to perform a get number of
  269.           rows (sqlgnr) function call and the table name specified is too
  270.           large.
  271.  
  272.       Remedy: Correct the application program so that the table conforms to
  273.           the rules of USERID.TABLENAME where the USERID can be 8
  274.           characters and the TABLENAME can be any long identifier (18
  275.           characters or less).
  276.  
  277. 00126 SQL NCC Bezeichneter Cursor existiert nicht oder wurde nicht ge÷ffnet
  278.  
  279.       Reason: The application program is attempting to execute an SQL
  280.           statement using the CURRENT OF cursorname or ADJUSTING
  281.           cursorname and the named cursor does not exist or is not open.
  282.  
  283.       Remedy: Correct the application program.    Check for previous SQL return
  284.           codes that may have closed or disconnected the cursor.  Correct
  285.           the logic of the application program to ensure that the
  286.           specified cursor is in fact open when this SQL statement is
  287.           executed.
  288.  
  289. 00127 SQL NCR Der im SQL-Befehl identifizierte Cursor ist nicht in einer Zeile positioniert
  290.  
  291.       Reason: The application program is attempting to execute an SQL
  292.           statement using the CURRENT OF cursorname or ADJUSTING
  293.           cursorname and the named cursor is not positioned at a row.
  294.           The cursor must be positioned on the row that is to be updated,
  295.           deleted, or adjusted by an insert.  Note that the cursor is no
  296.           longer positioned on a row if the row is deleted or an index
  297.           column of the row is updated by another cursor in the same
  298.           application program.
  299.  
  300.       Remedy: Correct the logic of the application program to ensure that the
  301.           cursor is correctly positioned on the intended row of the target
  302.           table before the SQL statement is executed.  Note that the
  303.           cursor is not positioned on a row if FETCH returned an end of
  304.           fetch return code.
  305.  
  306. 00128 SQL CAE Cursorname existiert bereits oder wurde bereits ge÷ffnet
  307.  
  308.       Reason: The application program is attempting to name a cursor using the
  309.           set cursor name (sqlscn) function call and the specified cursor
  310.           name already exists.
  311.  
  312.       Remedy: Correct the logic of the application program to ensure that it
  313.           does not attempt to name or open a cursor that is already open.
  314.  
  315. 00129 SQL CAI Kein Speicherplatz mehr auf der Client-Workstation (SQL CAI)
  316.  
  317.       Reason: The application has run out of memory at the client workstation.
  318.  
  319.       Remedy: Check available memory at the client workstation.  Attempt to
  320.           make more memory available.
  321.  
  322. 00130 SQL DNT Datenbank/Benutzer/Pa▀wort ist zu lang
  323.  
  324.       Reason: The database/user/password name specified at connect time or in
  325.           the SQL.INI configuration file is too large.
  326.  
  327.       Remedy: Correct the application program or the SQL.INI configuration
  328.           file to conform to the maximums.    The maximums are defined in
  329.           the file SQL.H.  A constant SQLMDNM defines the maximum database
  330.           name length as 8 and a constant SQLMSID defines the maximum
  331.           username or password length as 8.
  332.  
  333. 00131 SQL OMS Meldungsausgabegr÷▀e ist zu klein
  334.  
  335.       Reason: The output message buffer is too small to hold the current
  336.           output message.
  337.  
  338.       Remedy: The output message buffer should never be too small to hold the
  339.           current output message as it should be dynamically increased if
  340.           necessary.  Contact your local Gupta Technologies certified
  341.           technical support center for assistance.
  342.  
  343. 00132 SQL IMS Meldungseingabegr÷▀e ist zu klein
  344.  
  345.       Reason: The input message buffer is too small to hold the current input
  346.           message.
  347.  
  348.       Remedy: The input message buffer should never be too small for the
  349.           current input message as it should be dynamically increased if
  350.           necessary.  Contact your local Gupta Technologies certified
  351.           technical support center for assistance.
  352.  
  353. 00133 SQL IVE Ungⁿltiger Fehlerrⁿckgabe-Code
  354.  
  355.       Reason: SQLBase is attempting to find a error code in the error file
  356.           ERROR.SQL that does not exist.
  357.  
  358.       Remedy: Find out why the application program is looking up an error code
  359.           that does not exist.
  360.  
  361. 00134 SQL CNO Datei error.sql konnte nicht ge÷ffnet werden
  362.  
  363.       Reason: SQLBase is trying to open the file ERROR.SQL but can't find it.
  364.  
  365.       Remedy: Verify that ERROR.SQL is in either your current directory, the
  366.           \SQLBASE subdirectory under the root directory, in the root
  367.           directory, or in a directory specified by the PATH environment
  368.           variable.
  369.  
  370. 00135 SQL ICN Ungⁿltige Cursornummer
  371.  
  372.       Reason: The application program is attempting to perform a function call
  373.           and is using an invalid cursor number.
  374.  
  375.       Remedy: Correct the application program.    Verify that the cursor is
  376.           valid.  To verify the cursor value, print the value of cursor
  377.           after the connect and then before and after the function call
  378.           that returned this error.
  379.  
  380. 00136 SQL CCS Kein Speicherplatz mehr auf der Client-Workstation (SQL CAI)
  381.  
  382.       Reason: The application has run out of memory at the client workstation.
  383.  
  384.       Remedy: Check available memory at the client workstation.  Attempt to
  385.           make more memory available.
  386.  
  387. 00137 SQL NFC Keine Zeile wurde eingelesen fⁿr Current-Of-Cursor
  388.  
  389.       Reason: The application program is attempting to execute an SQL
  390.           statement using the CURRENT OF cursorname or ADJUSTING
  391.           cursorname and the named cursor is not positioned at a row.
  392.           The cursor must be positioned on the row that is to be updated,
  393.           deleted, or adjusted by an insert.  Note that the cursor is no
  394.           longer positioned on a row if the row is deleted or an index
  395.           column of the row is updated by another cursor in the same
  396.           application program.
  397.  
  398.       Remedy: Correct the logic of the application program to ensure that the
  399.           cursor is correctly positioned on the intended row of the target
  400.           table before the SQL statement is executed.  Note that the
  401.           cursor is not positioned on a row if FETCH returned an end of
  402.           fetch return code.
  403.  
  404. 00138 SQL IPI Fehler bei der Anwendungsprogrammierung: Ungⁿltige Bildspezifikation
  405.  
  406.       Reason: The picture specified in a number to picture (sqlxnp) function
  407.           call does not conform to rules.
  408.  
  409.       Remedy: Correct application program.  Verify that the picture conforms
  410.           to rules as documented in the number to picture (sqlxnp)
  411.           function call.  Also, check that the picture pointer accurately
  412.           points at the specified picture string.
  413.  
  414. 00139 SQL OSP Fehler bei der Anwendungsprogrammierung: Ausgabepuffer zu klein
  415.  
  416.       Reason: The output buffer is too small to hold the formatted number in a
  417.           number to picture (sqlxnp) function call.
  418.  
  419.       Remedy: Correct application program.  Verify that the output buffer is
  420.           large enough to hold the specified picture.
  421.  
  422. 00140 SQL DNI Datenbanksystem ist nicht installiert
  423.  
  424.       Reason: The application program is attempting to communicate with a
  425.           database and the database system is not installed.
  426.  
  427.       Remedy: Verify that DBROUTER, DBXROUTR, DBXCOMBO, DBLOCAL, OR DBXLOCAL
  428.           are started prior to running the application program.
  429.  
  430. 00141 SQL CSS Kein Speicherplatz mehr auf der Client-Workstation (SQL CSS)
  431.  
  432.       Reason: The application has run out of memory at the client workstation.
  433.  
  434.       Remedy: Check available memory at the client workstation.  Attempt to
  435.           make more memory available.
  436.  
  437. 00142 SQL CBS Kein Speicherplatz mehr auf der Client-Workstation (SQL CBS)
  438.  
  439.       Reason: The application has run out of memory at the client workstation.
  440.  
  441.       Remedy: Check available memory at the client workstation.  Attempt to
  442.           make more memory available.
  443.  
  444. 00143 SQL IMT Es wurde ein ungⁿltiger Fehlermeldungstyp bestimmt
  445.       Reason: Attempting to retrieve text associated with an error code but
  446.           the specified error text type is invalid.
  447.  
  448.       Remedy: Specify a valid error text type.    The valid error text types are
  449.           defined in SQL.H as SQLXMSG(1), SQLXREA (2), or SQLXREM (4).
  450.           Text types can be summed together so that multiple text types
  451.           are retrieved simulatenously, but a valid text type must be
  452.           greater than zero and less than or equal to seven (all text
  453.           types).
  454.  
  455. 00144 SQL IRN Ungⁿltige Zeilennummer
  456.  
  457.       Reason: The application program is trying to position (sqlprs) within a
  458.           result set at a row outside the range of the result set.
  459.  
  460.       Remedy: Verify that the row position is within the existing result set.
  461.           Remember, rows are not considered a part of the result set until
  462.           fetched.    Row positioning within a result set is relative to
  463.           zero, i.e., the first row in a result set is row zero.
  464.  
  465. 00145 SQL OOM Speicherplatz mehr auf der Client-Workstation (SQL OOM)
  466.  
  467.       Reason: The application has run out of memory at the client workstation.
  468.  
  469.       Remedy: Check available memory at the client workstation.  Attempt to
  470.           make more memory available.
  471.  
  472. 00146 SQL 046 NICHT VERWENDET
  473.  
  474.       Reason: This is error code is currently not used by the SQLBase system.
  475.  
  476.       Remedy: None.  This error code should never occur.  If you get this
  477.           error, contact your local Gupta Technologies certified
  478.           technical support center.
  479.  
  480. 00147 SQL ELE Fehler beim Lesen von Fehlermeldung
  481.  
  482.       Reason: The application program is attempting to look up an error in the
  483.           error file ERROR.SQL and a problem occurred during the process.
  484.  
  485.       Remedy: Check error that occurred during the lookup and address that
  486.           problem.
  487.  
  488. 00148 SQL DNO Die bestimmte Datenbank ist nicht auf dem spezifizierten Server
  489.  
  490.       Reason: During an operation that requires both a SQLBase Server handle
  491.           and a SQLBase database cursor it was determined that the
  492.           database specified is not on the SQLBase Server specified.
  493.  
  494.       Remedy: Correct application so the database cursor specified is for a
  495.           database that resides on the specified SQLBase Server.
  496.  
  497. 00149 SQL BNE On-line-Sicherung endet nicht korrekt
  498.  
  499.       Reason: Attempting some other operation before ending an online backup
  500.           operation.
  501.  
  502.       Remedy: End online backup before doing any other operation.
  503.  
  504. 00150 SQL RNE Wiederherstellen endet nicht korrekt
  505.  
  506.       Reason: Attempting some other operation before ending an online restore
  507.           operation.
  508.  
  509.       Remedy: End the online restore before attempting any other operation.
  510.  
  511. 00151 SQL 051 NICHT VERWENDET
  512.  
  513.       Reason: This is error code is currently not used by the SQLBase system.
  514.  
  515.       Remedy: None.  This error code should never occur.  If you get this
  516.           error, contact your local Gupta Technologies certified
  517.           technical support center.
  518.  
  519. 00152 SQL DAE Datenbank existiert bereits
  520.  
  521.       Reason: Attempting to create or restore a database that already exists.
  522.  
  523.       Remedy: None.  Do not attempt to create or restore an existing database.
  524.  
  525. 00153 SQL RAA Ergebnismengenproze▀ ist bereits aktiv
  526.  
  527.       Reason: Attempting to start (sqlsrs) or restart (sqlrrs) result set mode
  528.           and result set mode is already active.
  529.  
  530.       Remedy: None.  Do not attempt to start or restart result set mode if
  531.           result set mode is already active.
  532.  
  533. 00154 SQL RSM Ergebnismengenproze▀ mu▀ bereits aktiv sein
  534.  
  535.       Reason: The application program is attempting to start restriction mode
  536.           (sqlstr) or stop restriction mode (sqlspr) and result mode
  537.           (sqlsrs) has not been started.
  538.  
  539.       Remedy: Verify that the application program has previously started
  540.           result set mode with a sqlsrs() function call.
  541.  
  542. 00155 SQL CIA Benannter Cursor mu▀ die Operation SELECT ausfⁿhren
  543.  
  544.       Reason: Attempting to use the INSERT...ADJUSTING cursorname syntax but
  545.           the named cursor is not performing a SELECT.
  546.  
  547.       Remedy: Modify the application program so the named cursor is performing
  548.           a SELECT.
  549.  
  550. 00156 SQL CTC Befehl unterstⁿtzt keinen CURRENT OF oder ADJUSTING CURSOR
  551.  
  552.       Reason: Using the CURRENT OF cursorname or ADJUSTING cursorname syntax
  553.           when the SQL verb does not support these clauses.
  554.  
  555.       Remedy: Modify the SQL statement attempting to use the CURRENT OF
  556.           cursorname clause or ADJUSTING cursorname clause.
  557.  
  558. 00157 SQL NRM Benannter Cursor ist nicht im Ergebnismengenmodus
  559.  
  560.       Reason: Attempting to do an INSERT ...  ADJUSTING cursorname when the
  561.           named cursor is not in result set mode.
  562.  
  563.       Remedy: Make a change so that the named cursor is in result set mode.
  564.  
  565. 00158 SQL 058 NICHT VERWENDET
  566.  
  567.       Reason: This is error code is currently not used by the SQLBase system.
  568.  
  569.       Remedy: None.  This error code should never occur.  If you get this
  570.           error, contact your local Gupta Technologies certified
  571.           technical support center.
  572.  
  573. 00159 SQL FNS Operation Nach-hinten-holen (fetch backward) ist mit Ergebnismenge nicht erlaubt
  574.  
  575.       Reason: Using a fetch backwards (sqlfbk) when in result set mode.
  576.  
  577.       Remedy: Remove the fetch backwards (sqlfbk).  If you want to fetch the
  578.           previous row you can position (sqlprs) to the desired row when
  579.           in result set mode and then fetch it.
  580.  
  581. 00160 SQL CSB Kein Speicherplatz mehr auf der Client-Workstation (SQL CSB)
  582.  
  583.       Reason: The application has run out of memory at the client workstation.
  584.  
  585.       Remedy: Check available memory at the client workstation.  Attempt to
  586.           make more memory available.
  587.  
  588. 00161 SQL ACL Kein Speicherplatz mehr auf der Client-Workstation (SQL ACL)
  589.  
  590.       Reason: The application has run out of memory at the client workstation.
  591.  
  592.       Remedy: Check available memory at the client workstation.  Attempt to
  593.           make more memory available.
  594.  
  595. 00162 SQL IDN Ungⁿltiger Datenbankname
  596.  
  597.       Reason: The specified database name is invalid system identifier.
  598.  
  599.       Remedy: A valid database identifier is a maximum of 8 characters which
  600.           start with a letter followed by letters or numbers.  System
  601.           identifiers include usernames, database names, and database
  602.           server names.
  603.  
  604. 00163 SQL RNA Ergebnismenge ist nicht aktiv
  605.  
  606.       Reason: Attempting to get the number of rows in a result set with the
  607.           API function call sqlnrr() or attempting to set a position
  608.           within a result with the API function call sqlprs() and the
  609.           application program is not in result set mode.
  610.  
  611.       Remedy: Correct the application.    The application must be result set
  612.           mode before attempting to get the number of rows in a result set
  613.           or before attempting to position within a result set.
  614.  
  615. 00164 SQL NRS Keine Ergebnismenge
  616.  
  617.       Reason: Attempting to position within a front-end result set when the
  618.           application is not in result set mode.
  619.  
  620.       Remedy: Correct the application.    The application must be in front-end
  621.           result set mode before attempting to position within a result
  622.           set.
  623.  
  624. 00165 SQL 065 NICHT VERWENDET
  625.  
  626.       Reason: This is error code is currently not used by the SQLBase system.
  627.  
  628.       Remedy: None.  This error code should never occur.  If you get this
  629.           error, contact your local Gupta Technologies certified
  630.           technical support center.
  631.  
  632. 00166 SQL CRS Kann Front-end-Ergebnismenge nicht anlegen
  633.  
  634.       Reason: This error can occur because the client workstation is out of
  635.           memory, or a temporary file name could not be created, or
  636.           because the temporary front-end result set file could not be
  637.           opened.
  638.  
  639.       Remedy: Verify that there is sufficient memory at the client
  640.           workstation.  Verify that the FILES configuration parameter of
  641.           your operating system is set high enough to support multiple
  642.           files.
  643.  
  644. 00167 SQL NET Netzwerk-Prⁿffehler (front end)
  645.  
  646.       Reason: A network transmission problem has occurred while operating with
  647.           NETCHECK=1.  A network transmission error was detected at the
  648.           client workstation.  When the database server receives the bad
  649.           network reqeust an information message "Back end receives a NAK"
  650.           is displayed.  If the error is not recoverable, the messsage
  651.           "Back end give up" is displayed on the server F2 screen and this
  652.           error is returned to the client workstation.
  653.  
  654.       Remedy: Try again to see if the error is reproducible.  If reproducible,
  655.           try the same scenario on another client workstation computer to
  656.           double check if the problem is reproducible regardless of client
  657.           workstations.  If the problem is reproducible on any client
  658.           workstation, then the network hardware problem may be at the
  659.           database server computer.  Switching database server machines
  660.           may also help to diagnose the problem.  Check for loose cabling.
  661.  
  662. 00168 SQL FMG Fehler beim Einlesen einer temporΣren Front-end-Ergebnismengendatei
  663.  
  664.       Reason: A read error occurred reading from the front-end result set
  665.           temporary file on the local client workstaion.
  666.  
  667.       Remedy: Determine and correct the cause of the disk read failure.  Run a
  668.           check disk utility (CHKDSK) for the current operating system to
  669.           verify the status of the disk.
  670.  
  671. 00169 SQL SAV Fehler beim Schreiben in eine temporΣre Front-end-Ergebnismengendatei
  672.  
  673.       Reason: Attempting to write to a front-end result set file and a disk
  674.           write failure has occurred at the local client workstation.
  675.  
  676.       Remedy: Determine and correct the cause of the disk write failure.  Most
  677.           commonly, it may be because you have run out of available disk
  678.           space.  If sufficient disk space is available, then run a check
  679.           disk utility (CHKDSK) for the current operating system to verify
  680.           the status of the disk.
  681.  
  682. 00170 SQL DSB GewΣhlte Operation wurde fⁿr fremde DBMS deaktiviert
  683.  
  684.       Reason: The requested operation is not valid for the current active
  685.           database because front-end result sets are being employed.
  686.  
  687.       Remedy: None.  This operation cannot be performed when operating with
  688.           front-end result sets.
  689.  
  690. 00171 SQL NUF NICHT VERWENDET
  691.  
  692.       Reason: This is error code is currently not used by the SQLBase system.
  693.  
  694.       Remedy: None.  This error code should never occur.  If you get this
  695.           error, contact your local Gupta Technologies certified
  696.           technical support center.
  697.  
  698. 00172 SQL NSP API-CANcel (L÷schen; sqlcan) wird nur in einer OS/2-Umgebung unterstⁿtzt
  699.  
  700.       Reason: The API CANcel, sqlcan(), function call is not valid under the
  701.           current operating system.
  702.  
  703.       Remedy: None.  The API function call sqlcan() is only valid from an OS/2
  704.           client workstation communicating with a OS/2 SQLBase Server.
  705.  
  706. 00173 SQL 073 NICHT VERWENDET
  707.  
  708.       Reason: This is error code is currently not used by the SQLBase system.
  709.  
  710.       Remedy: None.  This error code should never occur.  If you get this
  711.           error, contact your local Gupta Technologies certified
  712.           technical support center.
  713.  
  714. 00174 SQL 074 NICHT VERWENDET
  715.  
  716.       Reason: This is error code is currently not used by the SQLBase system.
  717.  
  718.       Remedy: None.  This error code should never occur.  If you get this
  719.           error, contact your local Gupta Technologies certified
  720.           technical support center.
  721.  
  722. 00175 SQL OLC Lokale Datei der Client-Workstation kann nicht ge÷ffnet werden
  723.  
  724.       Reason: Attempting to copy a file from a SQLBase Server to a client
  725.           workstation OR attempting to copy a file from the client
  726.           workstation to the SQLBase Server AND the local file at the
  727.           client workstation cannot be opened or created.
  728.  
  729.       Remedy: Determine and correct the cause of the create failure.  Run a
  730.           check disk utility (CHKDSK) for the current operating system to
  731.           verify the status of disk.  Verify that sufficient disk space is
  732.           available and verify that the number of files allowed open for
  733.           the operating system permits the additional file, that is, check
  734.           the FILES= configuration parameter setting.
  735.  
  736. 00176 SQL WRI In die lokale Datei der Client-Workstation kann nicht geschrieben werden
  737.  
  738.       Reason: Attempting to copy a file from a SQLBase Server to a client
  739.           workstation and a disk write failure has occurred at the local
  740.           client workstation.
  741.  
  742.       Remedy: Determine and correct the cause of the disk write failure.  Most
  743.           commonly, it may be because you have run out of available disk
  744.           space.  If sufficient disk space is available, then run a check
  745.           disk utility (CHKDSK) for the current operating system to verify
  746.           the status of the disk.
  747.  
  748. 00177 SQL REA Aus der lokalen Datei der Client-Workstation kann nicht gelesen werden
  749.  
  750.       Reason: Attempting to copy a file from the client workstation to a
  751.           SQLBase Server and a disk read failure has occurred on the file
  752.           at the local client workstation.
  753.  
  754.       Remedy: Determine and correct the cause of the disk read failure.  Run a
  755.           check disk utility (CHKDSK) for the current operating system to
  756.           verify the status of the disk.
  757.  
  758. 00178 SQL SFW In die entfernte SQLBase-Serverdatei kann nicht geschrieben werden
  759.  
  760.       Reason: Attempting to copy a file from the client workstation to a
  761.           SQLBase Server and a disk write failure has occurred at the
  762.           remote SQLBase Server machine.
  763.  
  764.       Remedy: Determine and correct the cause of the disk write failure.  Most
  765.           commonly, it may be because you have run out of available disk
  766.           space.  If sufficient disk space is available, then run a check
  767.           disk utility (CHKDSK) for the current operating system to verify
  768.           the status of the disk.
  769.  
  770. 00179 SQL ISI NICHT VERWENDET
  771.  
  772.       Reason: This is error code is currently not used by the SQLBase system.
  773.  
  774.       Remedy: None.  This error code should never occur.  If you get this
  775.           error, contact your local Gupta Technologies certified
  776.           technical support center.
  777.  
  778. 00180 SQL ISH Ungⁿltiger Datenbank-Serverhandle
  779.  
  780.       Reason: Attempting a SQLBase Server administrative operation and a
  781.           connect to a valid Server handle has not been performed.
  782.  
  783.       Remedy: Obtain a valid database server handle by connecting to a SQLBase
  784.           Server.  Use the SET SERVER command in SQLTalk or the API
  785.           function call sqlcsv() to establish a Server connection.
  786.  
  787. 00181 SQL BFE Sicherungsdatei besteht bereits
  788.  
  789.       Reason: Backing up the database or transaction log files and the backup
  790.           destination file already exists.
  791.  
  792.       Remedy: Backup database or transaction log files to another disk file
  793.           name or remove or rename the existing file of the same name.
  794.  
  795. 00182 SQL CCB Sicherungsdatei kann nicht angelegt werden
  796.  
  797.       Reason: Backing up the database and the backup destination file cannot
  798.           be created.
  799.  
  800.       Remedy: Determine and correct the cause of the create failure.  Run a
  801.           check disk utility (CHKDSK) for the current operating system to
  802.           verify the status of disk.  Verify that sufficient disk space is
  803.           available and verify that the number of files allowed open for
  804.           the operating system permits the additional file, that is, check
  805.           the FILES= configuration parameter setting.
  806.  
  807. 00183 SQL NED Speicherplatz reicht fⁿr die Aktion Sichern oder Wiederherstellen nicht aus
  808.  
  809.       Reason: Attempting to Backup the database or transaction log files or
  810.           attempting to Restore the database or transaction log files and
  811.           the system has run out of disk space.
  812.  
  813.       Remedy: Provide for additional disk space.
  814.  
  815. 00184 SQL ISN Ungⁿltiger Servername
  816.  
  817.       Reason: The specified database server name is not valid.
  818.  
  819.       Remedy: Correct the database server name.  The maximum length of a
  820.           server name is 8 characters and must begin with a letter and
  821.           cannot contain special characters.
  822.  
  823. 00185 SQL CNB Sicherungsdatei kann nicht ge÷ffnet werden
  824.  
  825.       Reason: Attempting a Restore database and the system cannot open the
  826.           backup file.
  827.  
  828.       Remedy: Verify the backup file name and determine why the system could
  829.           open the backup file.
  830.  
  831. 00186 SQL CAB Sicherungs- oder Wiederherstellungsspeicherpuffer kann nicht zugewiesen werden
  832.  
  833.       Reason: Out of memory at the remote SQLBase Server when using the
  834.           ON SERVER clause, otherwise the system is out of memory at the
  835.           client workstation.
  836.  
  837.       Remedy: Check available memory.  Attempt to make more memory available.
  838.  
  839. 00187 SQL CNC Verbindung zum Server kann nicht hergestellt werden
  840.  
  841.       Reason: Failure attempting to connect to the specified database server.
  842.  
  843.       Remedy: Verify that the correct database server name is used.
  844.  
  845. 00188 SQL NV4 Die bestimmte Funktion ist in der SQLBase-Version 4.0 oder spΣter nicht mehr gⁿltig
  846.  
  847.       Reason: The specified operation is no longer valid for SQLBase 4.0 or
  848.           later.
  849.  
  850.       Remedy: The specified operation has been replaced with an alternative
  851.           way of doing the same operation.    Check the documentation to
  852.           determine the alternate technique.  The obsolete function are
  853.           described in the SQLBase C API Reference Manual, Chapter 5:
  854.           C/API Functions by Category.
  855.  
  856. 00189 SQL EAS Datenbank existiert bereits auf anderem Datenbankserver
  857.  
  858.       Reason: Attempting to install or create a database and the named
  859.           database already exists on another database server.
  860.  
  861.       Remedy: Install or create the database with an alternate name or verify
  862.           why a database already exists with the same database name.
  863.  
  864. 00190 SQL FUP Current-Of-Cursor ben÷tigt zum Aktualisieren eine SELECT-Anweisung
  865.  
  866.       Reason: Performing an UPDATE or DELETE with the CURRENT OF cursorname
  867.           clause and operating in DB2 compatibility mode where a SELECT
  868.           FOR UPDATE is required to use the CURRENT OF cursorname clause.
  869.  
  870.       Remedy: Modify SQL statements to either use the SELECT FOR UPDATE clause
  871.           or don't use the CURRENT OF cursorname clause.
  872.  
  873. 00191 SQL FIP CURRENT OF-Cursorproze▀ kann nicht verwendet werden. Einlesen in Verwendung
  874.  
  875.       Reason: Performing a DELETE or UPDATE with the CURRENT OF cursorname
  876.           clause and the named cursor was named after the SELECT statement
  877.           was already in progress.
  878.  
  879.       Remedy: Name the cursor before beginning the SELECT statement.  This is
  880.           caused by naming the cursor with a sqlscn function call after
  881.           the sqlexe function call.  By naming the cursor after the
  882.           execution (sqlexe), SQLBase cannot properly prepare for the SQL
  883.           command to allow for CURRENT OF cursorname processing.  The
  884.           cursor needs to be named before the sqlexe function call.
  885.  
  886. 00192 SQL LAE Protokolldateien existieren bereits
  887.  
  888.       Reason: Attempting to Restore transaction log files that already exist.
  889.  
  890.       Remedy: None.  Log files that already exist cannot be restored.
  891.  
  892. 00193 SQL FRT Lokale Ergebnismengen-Verzeichniskettennamen sind zu lang
  893.  
  894.       Reason: The specified directory name for the local result set directory
  895.           is too large.
  896.  
  897.       Remedy: Modify the directory name so it does not exceed 40 characters.
  898.  
  899. 00194 SQL MTT Mehr als zwei SchrΣgstriche in Verbindung
  900.  
  901.       Reason: Attempting to connect to a database and the specified database
  902.           name, username, and password string contains more than two
  903.           forward slashes.    The forward slash separates the database name,
  904.           username, and password, therefore a maximum of only two forward
  905.           slashes are necessary.
  906.  
  907.       Remedy: Modify the connect string containing the database, username, and
  908.           password so it is of the form "databasename/username/password".
  909.  
  910. 00195 SQL ISP Ungⁿltiger SET-Parameter
  911.  
  912.       Reason: Attempting to set a database parameter and the specified
  913.           parameter is invalid.
  914.  
  915.       Remedy: Verify and correct the specified parameter type.
  916.  
  917. 00196 SQL IGP Ungⁿltiger GET-Parameter
  918.  
  919.       Reason: Attempting to get a database parameter and the specified
  920.           parameter is invalid.
  921.  
  922.       Remedy: Verify and correct the specified parameter type.
  923.  
  924. 00197 SQL GNE Globaler Cursor existiert nicht
  925.  
  926.       Reason: Attempting to retrieve the current global cursor and a global
  927.           cursor does not exist.
  928.  
  929.       Remedy: To retrieve a global cursor the global cursor must exist.  A
  930.           global cursor is established by setting the global cursor with
  931.           the API function call sqlset() using the SQLPGBC set parameter.
  932.  
  933. 00198 SQL IPL Ungⁿltige SET-ParameterlΣnge
  934.  
  935.       Reason: Attempting a SET command with a numeric value and the specified
  936.           numeric value length is incorrectly specified.
  937.  
  938.       Remedy: Specify the correct numeric value length.  Generally, the
  939.           correct numeric length is the size of a field defined with data
  940.           type of SQLTDPV.    The easiest way to insure the correct length
  941.           is to use the length of zero whereby SQLBase will then calculate
  942.           the correct length.
  943.  
  944. 00199 SQL NBR Zurⁿckgesetzte ErgebnisdatensΣtze werden nicht unterstⁿtzt
  945.  
  946.       Reason: Attempting to turn off backend result sets when backend results
  947.           do not exist.
  948.  
  949.       Remedy: None.  Cannot turn off backend result sets if they do not exist.
  950.  
  951. 00200 SQL NTT Fehlerⁿbersetzungstabelle nicht gefunden
  952.  
  953.       Reason: The application program was attempting to convert a SQLBase
  954.           error return code to another "resultant" error code and the
  955.           translation table can not be found.
  956.  
  957.       Remedy: Add the ERRORFILE keyword to the SQL.INI configuration file.
  958.           This keyword specifies the name of the translation file.
  959.  
  960. fndef  SQ2ERR
  961. nclude "sq2err.h"
  962.  
  963. The errors documented in this section of the Error Guide are for general
  964. database operation errors.
  965.  
  966. 00201 DBO NCC Kein kompilierter Befehl
  967.  
  968.       Reason: Application program is attempting to perform a read long
  969.           (sqlrlo), write long (sqlwlo), long seek (sqllsk), store command
  970.           (sqlsto), or execute (sqlexe) without first compiling an SQL
  971.           statement.
  972.  
  973.       Remedy: Revise application to compile an SQL statement prior to
  974.           attempting the above operations.
  975.  
  976. 00202 DBO NSE Kein SELECT-Befehl
  977.  
  978.       Reason: Trying to fetch or position within a result set when the SQL
  979.           statement is not a SELECT.
  980.  
  981.       Remedy: Revise application to compile a SQL SELECT statement prior to
  982.           attempting the above operations.
  983.  
  984. 00203 DBO NEX Befehl wurde nicht ausgefⁿhrt
  985.  
  986.       Reason: Attempting a fetch or position within a result set without a
  987.           successful SQL SELECT statement.
  988.  
  989.       Remedy: Revise application to compile an SQL SELECT statement prior to
  990.           attempting the above operations.
  991.  
  992. 00204 DBO NST Nach-hinten-holen (fetch backward) ist in dieser Abfrage nicht erlaubt
  993.  
  994.       Reason: Application program is attempting to enable fetch backwards
  995.           (sqlefb) when the compiled SQL SELECT statement accesses more
  996.           than one table.  Backward fetch calls are restricted to queries
  997.           on a single table.
  998.  
  999.       Remedy: Revise application to comply with fetch backward restrictions.
  1000.  
  1001. 00205 DBO ORD ORDER BY mit Nach-hinten-holen (fetch backward)
  1002.  
  1003.       Reason: Application program is attempting to enable fetch backwards
  1004.           (sqlefb) when the compiled SQL SELECT statement contains an
  1005.           ORDER BY clause and the column or columns to be ordered on are
  1006.           not indexed.
  1007.  
  1008.       Remedy: Revise application to comply with fetch backward restrictions.
  1009.  
  1010. 00206 DBO RTL Zeile zu lang zum Einlesen
  1011.  
  1012.       Reason: The data being fetched is too big to fit into the input message
  1013.           buffer which SQLBase increases dynamically but, the database
  1014.           router has run out of memory on the client workstation computer.
  1015.  
  1016.       Remedy: If you are using DBROUTER.EXE, you can increase the size of the
  1017.           SQL.INI configuration parameter called HEAP or try using the
  1018.           extended memory version of this program called DBXROUTR.EXE if
  1019.           extended memory is available.  If you are already using
  1020.           DBXROUTR.EXE then you can provide more extended memory.  And
  1021.           finally, as a last resort, you could decrease the number of
  1022.           column being fetched.
  1023.  
  1024. 00207 DBO CNF Befehl fⁿr Abfrage nicht gefunden
  1025.  
  1026.       Reason: Attempting to retrieve (sqlret) a stored command from the
  1027.           database and the named stored command is not found.
  1028.  
  1029.       Remedy: Store the command before attempting the retrieve or use the
  1030.           correct name when attempting the retrieve.
  1031.  
  1032. 00208 DBO CIN Gestapelter Befehl wurde ungⁿltig
  1033.  
  1034.       Reason: Attempting to retrieve (sqlret) a stored command that has been
  1035.           invalidated by the system.
  1036.  
  1037.       Remedy: A stored command will become invalidated by SQLBase if an index
  1038.           or field is dropped that was available when the command was
  1039.           originally stored.
  1040.  
  1041. 00209 DBO STO Befehl wurde gestapelt
  1042.  
  1043.       Reason: Trying to seek a position in a long data column (sqllsk), read a
  1044.           long data column (sqlrlo), or write a long data column (sqlwlo)
  1045.           and the SQL command was previously stored and is not available.
  1046.  
  1047.       Remedy: Compile the SQL statement before attempting any of the long data
  1048.           column operations mentioned above.
  1049.  
  1050. 00210 DBO IFN Ungⁿltige Memofeldnummer
  1051.  
  1052.       Reason: Attempting to read long data (sqlrlo) or seek a position within
  1053.           long data (sqllsk) and the column number specified is not a
  1054.           database data type of LONG VARCHAR.
  1055.  
  1056.       Remedy: Modify the column number so that corresponds to the long data in
  1057.           the select list.    For a statement like
  1058.  
  1059.            SELECT EMPNO, DOB, HISTORY FROM PERSONAL
  1060.  
  1061.           the long data field HISTORY would be column three regardless of
  1062.           where it was defined when performing the CREATE TABLE PERSONAL
  1063.           (HISTORY LONG VARCHAR, DOB DATE, EMPNO SMALLINT).
  1064.  
  1065. 00211 DBO NBK On-line-Sicherung ist bei Nur-lesen-Isolierungsstufe nicht erlaubt
  1066.  
  1067.       Reason: On-line backup  is  not  allowed    while  using  the  read-only
  1068.           isolation level.
  1069.  
  1070.       Remedy: Change the isolation level to CS, RR,  or  RL  and  retry  the
  1071.           backup.
  1072.  
  1073. 00212 DBO SDD DDL-Befehl kann nicht gestapelt werden
  1074.  
  1075.       Reason: Attempting to store a data definition language command.
  1076.  
  1077.       Remedy: None.  SQLBase does not allow the storing of data definition
  1078.           language commands.  Data definition language statements should
  1079.           only be executed once to establish tables, indexes, views, etc.
  1080.           Performing DDL operation in a production envinoment is
  1081.           discouraged as it can reduce user currency.
  1082.  
  1083. 00213 DBO NTL Gestapelter Befehl ist zu lang
  1084.  
  1085.       Reason: Attempting to store (sqlsto), retrieve (sqlret), or drop
  1086.           (sqldst) a stored command and the specified name is too long.
  1087.  
  1088.       Remedy: Correct the specified name so that it not greater than the
  1089.           maximum bind name length, SQLMBNL (18), found in SQL.H.
  1090.  
  1091. 00214 DBO NLB Ist keine Memo-Bindevariable
  1092.  
  1093.       Reason: Attempting a write long data column operation and the SQL
  1094.           statement is not an UPDATE or INSERT statement.  Or, the column
  1095.           that is attempting to be updated or inserted is not a LONG
  1096.           VARCHAR data column.
  1097.  
  1098.       Remedy: Do not perform a write long data operation with an SQL statement
  1099.           that is not an UPDATE or INSERT.    If the SQL statement is an
  1100.           UPDATE or INSERT then verify that the column number used with
  1101.           the write long data (sqlwlo) operation is associated with a LONG
  1102.           VARCHAR data column in the SQL statement.
  1103.  
  1104. 00215 DBO GBY GROUP BY mit Nach-hinten-holen (fetch backward)
  1105.  
  1106.       Reason: Attempting to enable fetch backwards (sqlefb) and the the SELECT
  1107.           statement contains a GROUP BY clause.
  1108.  
  1109.       Remedy: Backward fetching is not allowed with a SELECT that contains a
  1110.           GROUP BY clause.    Modify the application.
  1111.  
  1112. 00216 DBO SFN Funkionen mit Nach-hinten-holen (fetch backward) einstellen
  1113.  
  1114.       Reason: Attempting a set function within a fetch backward operation.
  1115.  
  1116.       Remedy: None.  Set functions are not allowed with a fetch backward
  1117.           operation.
  1118.  
  1119. 00217 DBO RNA Wiederherstellung nicht aktiv
  1120.  
  1121.       Reason: Attempting a rollback and recovery is not active.
  1122.  
  1123.       Remedy: Modify the application so that connections is made with recovery
  1124.           active.  Use sqlcnc rather than sqlcnr.
  1125.  
  1126. 00218 DBO STD Gestapelter Befehl existiert nicht
  1127.  
  1128.       Reason: Attempting to drop a stored command that does not exist.
  1129.  
  1130.       Remedy: Modify the drop store command so that it specifies a stored
  1131.           command name that exists.
  1132.  
  1133. 00219 DBO FBV Kann in dieser Ansicht nicht nach hinten holen (fetch backward)
  1134.  
  1135.       Reason: Attempting a enable fetch backward (sqlefb) function call and
  1136.           the query is on a view.
  1137.  
  1138.       Remedy: Modify the application program.
  1139.  
  1140. 00220 DBO LSK Memo-Suchen hinter Ende von Memodaten
  1141.  
  1142.       Reason: The application program is trying to position within long data
  1143.           and the position specified is beyond the end of the long data.
  1144.  
  1145.       Remedy: Modify the application program so that it does not position
  1146.           beyond the end of the long data.    Remember that the position is
  1147.           relative to zero, i.e. the first character is position zero.  To
  1148.           determine the entire length of the long data you can perform the
  1149.           get long data size (sqlgls) function call.
  1150.  
  1151. 00224 DBO CSD Start-Datenbank kann nicht ge÷ffnet werden
  1152.  
  1153.       Reason: The application is trying to initialize a new database (sqlins)
  1154.           and SQLBase cannot find the file START.DBS in the "home"
  1155.           database directory.
  1156.  
  1157.       Remedy: Verify that the file START.DBS is available in the "home"
  1158.           database directory.  A definition of the "home" database
  1159.           directory can be found in the Installation and Operations Guide.
  1160.  
  1161. 00225 DBO IRF Initialisierungs-Lesefehler
  1162.  
  1163.       Reason: The application is trying to initialize a new database (sqlins)
  1164.           and a read error has been encountered on the file START.DBS.
  1165.  
  1166.       Remedy: Try to determine why SQLBase cannot read the file START.DBS
  1167.           before contacting your local Gupta Technologies certified
  1168.           technical support center.
  1169.  
  1170. 00226 DBO IWF Initialisierungs-Schreibfehler
  1171.  
  1172.       Reason: The application is trying to initialize a new database (sqlins)
  1173.           and a write error has been encountered.  This is a Fatal Error.
  1174.  
  1175.       Remedy: Try to determine why SQLBase cannot perform the write operation
  1176.           before contacting your local Gupta Technologies certified
  1177.           technical support center.
  1178.  
  1179. 00227 DBO IIL Ungⁿltige Isolationsebene
  1180.  
  1181.       Reason: Trying to set the isolation level (sqlsil) and specifying an
  1182.           invalid isolation level.
  1183.  
  1184.       Remedy: The valid isolation levels are defined in the file SQL.H which
  1185.           include the following stings (or defined contants):
  1186.  
  1187.            "RR" (SQLILRR) - read repeatibility
  1188.            "CS" (SQLILCS) - cursor stability
  1189.            "RO" (SQLILRO) - read only
  1190.            "RL" (SQLILRL) - release lock
  1191.  
  1192. 00228 DBO IDP Nur interner Fehler: Ungⁿltiger Datenbank-Parametertyp
  1193.  
  1194.       Reason: This is error is only used internally by the SQLBase system.
  1195.  
  1196.       Remedy: None.  This error code should never occur.  If you get this
  1197.           error, contact your local Gupta Technologies certified
  1198.           technical support center.
  1199.  
  1200. 00229 DBO SNL Der letzte Befehl einer Befehlskette mu▀ ein SELECT-Befehl sein.
  1201.  
  1202.       Reason: SELECT commands are allowed in a chained command bug  only  as
  1203.           the last command.
  1204.  
  1205.       Remedy: Put the select command as the last command.
  1206.  
  1207. 00230 DBO ROR NICHT VERWENDET
  1208.  
  1209.       Reason: This is error code is currently not used by the SQLBase system.
  1210.  
  1211.       Remedy: None.  This error code should never occur.  If you get this
  1212.           error, contact your local Gupta Technologies certified
  1213.           technical support center.
  1214.  
  1215. 00231 DBO IVR Ungⁿltige Version
  1216.  
  1217.       Reason: The application is using mismatching versions of software or the
  1218.           database version does not correspond to the software.
  1219.  
  1220.       Remedy: Verify that the software and database are from the same release
  1221.           of SQLBase.
  1222.  
  1223. 00232 DBO DBA Braucht DBA-Rechte fⁿr diese Operation
  1224.  
  1225.       Reason: Attempting an operation reserved for users with DBA authority.
  1226.  
  1227.       Remedy: None.  The statement cannot be executed.    Operator must have DBA
  1228.           authority.
  1229.  
  1230. 00233 DBO ILS EingabeMeldunglΣnge zu klein
  1231.  
  1232.       Reason: SQLBase is attempting to set the input message buffer to a size
  1233.           smaller than the minimum size required.
  1234.  
  1235.       Remedy: The input message buffer should never be set so small that it is
  1236.           smaller than the minimum size required.  Contact your local
  1237.           Gupta Technologies certified technical support center.
  1238.  
  1239. 00234 DBO CAI Kein Speicherplatz mehr im Datenbankcomputer (DBO CAI)
  1240.  
  1241.       Reason: Not enough memory at the database engine to perform the
  1242.           requested task.
  1243.  
  1244.       Remedy: Check available memory at the database computer.    Attempt to
  1245.           make more memory available.  To make more memory available for
  1246.           the database engine, you can reduce size of the CACHE.
  1247.  
  1248. 00235 DBO RRM NICHT VERWENDET
  1249.  
  1250.       Reason: This is error code is currently not used by the SQLBase system.
  1251.  
  1252.       Remedy: None.  This error code should never occur.  If you get this
  1253.           error, contact your local Gupta Technologies certified
  1254.           technical support center.
  1255.  
  1256. 00236 DBO NTR NICHT VERWENDET
  1257.  
  1258.       Reason: This is error code is currently not used by the SQLBase system.
  1259.  
  1260.       Remedy: None.  This error code should never occur.  If you get this
  1261.           error, contact your local Gupta Technologies certified
  1262.           technical support center.
  1263.  
  1264. 00239 DBO MBR Mu▀ in Ergebnismengenmodus sein, um in Restriktionsmodus zu wechseln
  1265.  
  1266.       Reason: An application is attempting to stop restriction mode (sqlspr)
  1267.           or start restriction mode (sqlstr) and the application is not in
  1268.           result set mode.
  1269.  
  1270.       Remedy: Modify the application so that it is in result set mode before
  1271.           attempting to start or stop restriction mode.  Restriction set
  1272.           mode is a submode of result set mode.
  1273.  
  1274. 00240 DBO RMA Restriktionsmodus ist bereits aktiv
  1275.  
  1276.       Reason: An application is attempting to start restriction mode (sqlstr)
  1277.           and the application is already in restriction mode.
  1278.  
  1279.       Remedy: Modify the application so that it does not attempt to start
  1280.           restriction mode while already in restriction mode.
  1281.  
  1282. 00241 DBO RAO Restriktionsmodus ist bereits deaktiviert
  1283.  
  1284.       Reason: An application is attempting to stop restriction mode (sqlspr)
  1285.           and the application is not in restriction mode.
  1286.  
  1287.       Remedy: Modify the application so that it does not attempt to stop
  1288.           restriction mode while not in restriction mode.
  1289.  
  1290. 00242 DBO RSN Ergebnismengenproz▀ wird nicht verwendet
  1291.  
  1292.       Reason: An application is attempting to get the number of rows in a
  1293.           result set (sqlnrr) and the application is not in result set
  1294.           mode.
  1295.  
  1296.       Remedy: Modify the application so that it does not attempt to get the
  1297.           number of rows in a result set (sqlnrr) while not in result set
  1298.           mode.
  1299.  
  1300. 00243 DBO CIB Kein Speicherplatz mehr im Datenbankcomputer (DBO CIB)
  1301.  
  1302.       Reason: Not enough memory at the database engine to perform the
  1303.           requested task.
  1304.  
  1305.       Remedy: Check available memory at the database computer.    Attempt to
  1306.           make more memory available.  To make more memory available for
  1307.           the database engine, you can reduce size of the CACHE.
  1308.  
  1309. 00244 DBO DIU Mit anderen Benutzern deinstallieren
  1310.  
  1311.       Reason: Attempting to deinstall a database while other users are
  1312.           connected to the database.
  1313.  
  1314.       Remedy: Verify that everyone have logged off of the database before
  1315.           trying to deinstall the database.
  1316.  
  1317. 00245 DBO SDC SELECT in verketteten Befehlen nicht erlaubt
  1318.  
  1319.       Reason: SQL SELECT statements are not allowed in a sequence of chained
  1320.           commands.
  1321.  
  1322.       Remedy: Eliminate any stored SELECT commands from the chained command
  1323.           sequence.
  1324.  
  1325. 00246 DBO CDC CURRENT OF CURSOR in verketteten Befehlen
  1326.  
  1327.       Reason: A DELETE or UPDATE is not allowed with the CURRENT OF cursorname
  1328.           clause within a chained command.
  1329.  
  1330.       Remedy: Eliminate any stored DELETE or UPDATE statements that use the
  1331.           CURRENT OF cursorname clause from the chained command sequence.
  1332.  
  1333. 00247 DBO DAR DBA-Rechte werden fⁿr diese Operation ben÷tigt
  1334.  
  1335.       Reason: Attempting to shutdown a database without DBA authority.
  1336.  
  1337.       Remedy: None.  Only a user with DBA authority can shutdown a database.
  1338.  
  1339. 00248 DBO COF Die bestimmte entfernte Datei kann auf dem SQLBase-Server nicht ge÷ffnet werden
  1340.  
  1341.       Reason: Attempting to open an existing file and a failure has occurred.
  1342.  
  1343.       Remedy: Determine and correct the cause of the open file failure.
  1344.           Verify that the specified file exists.  Verify the number of
  1345.           files allowed open for the operating system permits the
  1346.           additional file, that is, check the FILES= configuration
  1347.           parameter setting.
  1348.  
  1349. 00249 DBO CCF Die bestimmte entfernte Datei kann auf dem SQLBase-Server nicht geschlossen werden
  1350.  
  1351.       Reason: Attempting to close a file and a failure has occurred.
  1352.  
  1353.       Remedy: Determine and correct the cause of the close file failure.
  1354.  
  1355. 00250 DBO CDF Die bestimmte entfernte Datei kann auf dem SQLBase-Server nicht gel÷scht werden
  1356.  
  1357.       Reason: Attempting to delete a remote file or remove an existing
  1358.           directory on the remote SQLBase Server and a failure has
  1359.           occurred.
  1360.  
  1361.       Remedy: Determine and correct the cause of the delete failure.  Verify
  1362.           that the specified file exists.
  1363.  
  1364. 00251 DBO REA Lesefehler beim Lesen einer entfernten Datei auf einem SQLBase-Server
  1365.  
  1366.       Reason: Attempting to read a file and a disk read failure has occurred.
  1367.  
  1368.       Remedy: Determine and correct the cause of the disk read failure.  Run a
  1369.           check disk utility (CHKDSK) for the current operating system to
  1370.           verify the status of the disk.
  1371.  
  1372. 00252 DBO WRI Schreibfehler beim Schreiben in eine entfernte Datei auf einem SQLBase-Server
  1373.  
  1374.       Reason: Attempting to write to a file and a disk write failure has
  1375.           occurred.
  1376.  
  1377.       Remedy: Determine and correct the cause of the disk write failure.  Most
  1378.           commonly, it may be because you have run out of available disk
  1379.           space.  If sufficient disk space is available, then run a check
  1380.           disk utility (CHKDSK) for the current operating system to verify
  1381.           the status of the disk.
  1382.  
  1383. 00253 DBO CSK Fehler beim Suchen in einer entfernten Datei auf einem SQLBase-Server
  1384.  
  1385.       Reason: Attempting to lseek within a file and a lseek failure has
  1386.           occurred.
  1387.  
  1388.       Remedy: Determine and correct the cause of the disk lseek failure.  Run
  1389.           a check disk utility (CHKDSK) for the current operating system
  1390.           to verify the status of the disk.
  1391.  
  1392. 00254 DBO CRD NICHT VERWENDET
  1393.  
  1394.       Reason: This is error code is currently not used by the SQLBase system.
  1395.  
  1396.       Remedy: None.  This error code should never occur.  If you get this
  1397.           error, contact your local Gupta Technologies certified
  1398.           technical support center.
  1399.  
  1400. 00255 DBO IVH NICHT VERWENDET
  1401.  
  1402.       Reason: This is error code is currently not used by the SQLBase system.
  1403.  
  1404.       Remedy: None.  This error code should never occur.  If you get this
  1405.           error, contact your local Gupta Technologies certified
  1406.           technical support center.
  1407.  
  1408. 00256 DBO OOM Kein weiterer Speicherplatz mehr auf dem Datenbank-Computer (DBO OOM)
  1409.  
  1410.       Reason: Not enough memory at the database engine to perform the
  1411.           requested task.
  1412.  
  1413.       Remedy: Check available memory at the database computer. Attempt to
  1414.           make more memory available.  To make more memory available for
  1415.           the database engine, you can reduce size of the CACHE.
  1416.  
  1417. 00257 DBO CAL Kein weiterer Speicherplatz mehr auf dem Datenbank-Computer (DBO CAL)
  1418.  
  1419.       Reason: Not enough memory at the database engine to perform the
  1420.           requested task.
  1421.  
  1422.       Remedy: Check available memory at the database computer.    Attempt to
  1423.           make more memory available.  To make more memory available for
  1424.           the database engine, you can reduce size of the CACHE.
  1425.  
  1426. 00258 DBO RDO Nur-Lesen-Modus ist fⁿr diese Datenbank deaktiviert
  1427.  
  1428.       Reason: Attempting to switch to Read Only Locking isolation mode and the
  1429.           database is not prepared to handle read only transactions.
  1430.  
  1431.       Remedy: To use the Read Only Locking isolation mode, the database must
  1432.           have the READONLY keyword enabled.
  1433.  
  1434. 00259 DBO NV4 Die bestimmte Funktion ist in der SQLBase-Version 4.0 oder spΣter nicht mehr gⁿltig
  1435.  
  1436.       Reason: The specified operation is no longer valid for SQLBase 4.0 or
  1437.           later.
  1438.  
  1439.       Remedy: The specified operation has been replaced with an alternative
  1440.           way of doing the same operation.    Check the documentation to
  1441.           determine the alternate technique.  The obsolete function are
  1442.           described in the SQLBase C API Reference Manual, Chapter 5:
  1443.           C/API Functions by Category.
  1444.  
  1445. 00260 DBO DNS Datum-Zeit wurde nicht mit ROLLFORWARD fⁿr eine bestimmte Datum-Zeit bestimmt
  1446.  
  1447.       Reason: ROLLFORWARD TO TIME specified but not datetime specified.
  1448.  
  1449.       Remedy: Specify the datetime when performing a ROLLFORWARD TO TIME.
  1450.  
  1451. 00261 DBO IDS Ungⁿltige Datum-Zeit-Spezifikation wurde mit ROLLFORWARD bestimmt
  1452.  
  1453.       Reason: ROLLFORWARD to a specific datetime specified an invalid
  1454.           datetime.
  1455.  
  1456.       Remedy: Specify the correct datetime format of "mm/dd/yy hh:mm:ss".
  1457.  
  1458. 00262 DBO ICM NUR INTERN VERWENDET: Ungⁿldiger Verbindungsmodus
  1459.  
  1460.       Reason: This is error is only used internally by the SQLBase system.
  1461.  
  1462.       Remedy: None.  This error code should never occur.  If you get this
  1463.           error, contact your local Gupta Technologies certified
  1464.           technical support center.
  1465.  
  1466. 00263 DBO LFS Die bestimmte Transaktionsprotokolldateigr÷▀e ist zu klein
  1467.  
  1468.       Reason: Attempting to set the transaction log file size too small.
  1469.  
  1470.       Remedy: Modify transaction log file size being set.  Generally, the
  1471.           minimum size is 100K, unless you are using partitioned
  1472.           databases, in which case, the minimum size is 1MB (1000K).
  1473.  
  1474. 00264 DBO IRM Unerlaubter Rollforward-Modus
  1475.  
  1476.       Reason: The specified rollforward mode is invalid.
  1477.  
  1478.       Remedy: Correct the rollforward mode.  The following modes are the valid
  1479.           choices: (1)  SQLMEOL  Rollforward to end of all available logs.
  1480.                (2)  SQLMEOB  Rollforward to end of backup.
  1481.                (3)  SQLMTIM  Rollforward to a specified time.
  1482.  
  1483. 00265 DBO CTI Prⁿfpunkt-Zeitintervall zu lang
  1484.  
  1485.       Reason: Cannot set the checkpoint interval greater than 30 minutes.
  1486.  
  1487.       Remedy: Use a valid checkpoint interval not greater than 30 minutes.
  1488.  
  1489. 00266 DBO RFS NΣchstes Protokoll einlesen ist nur gⁿltig, nachdem Rollforward gestartet wurde
  1490.  
  1491.       Reason: A Get Next Log command has been issued before beginning the
  1492.           Rollforward recovery process.
  1493.  
  1494.       Remedy: Start Rollforward recovery before doing a Get Next Log.
  1495.  
  1496. 00267 DBO ILB NICHT VERWENDET
  1497.  
  1498.       Reason: This is error code is currently not used by the SQLBase system.
  1499.  
  1500.       Remedy: None.  This error code should never occur.  If you get this
  1501.           error, contact your local Gupta Technologies certified
  1502.           technical support center.
  1503.  
  1504. 00268 DBO HSS History-Dateigr÷▀e mu▀ einen positiven Wert haben
  1505.  
  1506.       Reason: Cannot set the History file size to zero or less than zero.
  1507.  
  1508.       Remedy: Correct history file size setting to be a positive value.
  1509.  
  1510. 00269 DBO BTC NICHT VERWENDET
  1511.  
  1512.       Reason: This is error code is currently not used by the SQLBase system.
  1513.  
  1514.       Remedy: None.  This error code should never occur.  If you get this
  1515.           error, contact your local Gupta Technologies certified
  1516.           technical support center.
  1517.  
  1518. 00270 DBO RFI Rollforward unterbrochen; Datenbank-Sicherung wird wiederhergestellt
  1519.  
  1520.       Reason: The Rollforward operation has been interrupted.
  1521.  
  1522.       Remedy: Restart the restore of database backup again.
  1523.  
  1524. 00271 DBO LNE Protokollierung nicht aktiviert
  1525.  
  1526.       Reason: Attempting a Backup and Recovery, or Rollback operation and
  1527.           transaction logging (recovery) is not enabled.
  1528.  
  1529.       Remedy: Backup and Recovery, and transaction Rollbacks are not possible
  1530.           with transaction logging (recovery) turned off.  Connect with
  1531.           recovery ON to perform Backup and Recovey, and transaction
  1532.           Rollbacks.
  1533.  
  1534. 00272 DBO CAF Kein Speicherplatz mehr auf Datenbank-Computer (DBO CAF)
  1535.  
  1536.       Reason: Not enough memory at the database engine to perform the
  1537.           requested task.
  1538.  
  1539.       Remedy: Check available memory at the database computer.    Attempt to
  1540.           make more memory available.  To make more memory available for
  1541.           the database engine, you can reduce size of the CACHE.
  1542.  
  1543. 00273 DBO COP Datenbank-Kopiedatei ÷ffnen ist fehlgeschlagen
  1544.  
  1545.       Reason: Attempting to open an existing file and a failure has occurred.
  1546.  
  1547.       Remedy: Determine and correct the cause of the open file failure.
  1548.           Verify that the specified file exists.  Verify the number of
  1549.           files allowed open for the operating system permits the
  1550.           additional file, that is, check the FILES= configuration
  1551.           parameter setting.
  1552.  
  1553. 00274 DBO CCR Datenbank-Kopiedatei anlegen ist fehlgeschlagen
  1554.  
  1555.       Reason: Attempting to create a file and a failure has occurred.
  1556.  
  1557.       Remedy: Determine and correct the cause of the create failure.  Run a
  1558.           check disk utility (CHKDSK) for the current operating system to
  1559.           verify the status of disk.  Verify that sufficient disk space is
  1560.           available and verify that the number of files allowed open for
  1561.           the operating system permits the additional file, that is, check
  1562.           the FILES= configuration parameter setting.
  1563.  
  1564. 00275 DBO BSC NICHT VERWENDET
  1565.  
  1566.       Reason: This is error code is currently not used by the SQLBase system.
  1567.  
  1568.       Remedy: None.  This error code should never occur.  If you get this
  1569.           error, contact your local Gupta Technologies certified
  1570.           technical support center.
  1571.  
  1572. 00276 DBO TLU NICHT VERWENDET
  1573.  
  1574.       Reason: This is error code is currently not used by the SQLBase system.
  1575.  
  1576.       Remedy: None.  This error code should never occur.  If you get this
  1577.           error, contact your local Gupta Technologies certified
  1578.           technical support center.
  1579.  
  1580. 00277 DBO LBD Protokollsicherung deaktiviert
  1581.  
  1582.       Reason: Attempting to backup logs or get the next log or set the next
  1583.           log and transaction logging is disabled.
  1584.  
  1585.       Remedy: Enabled logging before attempting to backup logs, get the next
  1586.           log, or set the next log.
  1587.  
  1588. 00278 DBO NLF NICHT VERWENDET
  1589.  
  1590.       Reason: This is error code is currently not used by the SQLBase system.
  1591.  
  1592.       Remedy: None.  This error code should never occur.  If you get this
  1593.           error, contact your local Gupta Technologies certified
  1594.           technical support center.
  1595.  
  1596. 00279 DBO SLS Transaktionsspannenbereich zu klein
  1597.  
  1598.       Reason: Trying to set the transaction span limit to less than zero.
  1599.  
  1600.       Remedy: Set the transaction span limit using a valid number.  The
  1601.           transaction span limit is the number of log files an active
  1602.           transaction is allowed to span.  Any transaction that violates
  1603.           the limit is rolled back.  A span limit of zero indicates that
  1604.           transaction span limit checking is disabled.
  1605.  
  1606. 00280 DBO ITO Ungⁿltiger Zeitⁿberschreitungswert
  1607.  
  1608.       Reason: Trying to set an invalid database lock timeout value.
  1609.  
  1610.       Remedy: Set the lock wait timeout value using a valid number.  The
  1611.           number represent seconds to wait for a database lock to be
  1612.           acquired.  After the specified time has elapsed, the transaction
  1613.           is rolled back.  The default setting is 300 seconds.  Valid
  1614.           timeout values are:
  1615.          1 to 1800 Seconds to wait for a lock (1 second to 30 minutes)
  1616.         -1       Wait forever for a lock held by another transaction
  1617.          0       Never wait for a lock and immediately return a
  1618.                timeout error (nowait locking).
  1619.  
  1620. 00281 DBO IVS Ungⁿltige Versionszeichenkette
  1621.  
  1622.       Reason: Attempting to set an invalid version number.
  1623.  
  1624.       Remedy: Set the version number with a valid version number string.
  1625.           For example, "5.0.0".
  1626.  
  1627. 00282 DBO RNS NUR INTERN VERWENDET: Forderung nicht unterstⁿtzt
  1628.  
  1629.       Reason: This is error is only used internally by the SQLBase system.
  1630.  
  1631.       Remedy: None.  This error code should never occur.  If you get this
  1632.           error, contact your local Gupta Technologies certified
  1633.           technical support center.
  1634.  
  1635. 00283 DBO LFL Protokolldateigr÷▀e zu gro▀
  1636.  
  1637.       Reason: Attempting to set the transaction log file size too large.
  1638.  
  1639.       Remedy: Modify transaction log file size being set.
  1640.           The mamixum size is 4,194,303K.
  1641.  
  1642. 00284 DBO LBM LOGBACKUP mu▀ ON sein fⁿr BACKUP DATABASE; versuche BACKUP SNAPSHOT
  1643.  
  1644.       Reason: Transaction log backup must be ON for a BACKUP DATABASE
  1645.  
  1646.       Remedy: Try doing a BACKUP SNAPSHOT.
  1647.  
  1648. 00285 DBO NSR SELECT-Befehl kann in Restriktionsmodus nicht gestapelt werden
  1649.  
  1650.       Reason: Cannot store a SELECT statement while operating in restriction
  1651.           mode.
  1652.  
  1653.       Remedy: Store the SELECT command while not operating in restriction
  1654.           mode.
  1655.  
  1656. 00286 DBO CBL Dieses NΣchste Protokoll ist kleiner als das NΣchste Protokoll, das gesichert werden soll
  1657.  
  1658.       Reason: Specifying log files in an incorrect fashion.  Subsequent log
  1659.           files should always have the next higher transaction log file
  1660.           numbers.
  1661.  
  1662.       Remedy: Specify the correct next transaction log file.
  1663.  
  1664. 00287 DBO CBG Das NΣchste Protokoll ist gr÷▀er als das momentan aktive Protokoll
  1665.  
  1666.       Reason: Specifying log files in an incorrect fashion.  A subsequent log
  1667.           file can never be greater than the current active log file.
  1668.  
  1669.       Remedy: Specify the correct next transaction log file.
  1670.  
  1671. 00288 DBO IFE Datenbankdateigr÷▀e ist zu klein
  1672.  
  1673.       Reason: The specified database file size extension is too small.
  1674.  
  1675.       Remedy: Correct database file size extension size.  If you are using
  1676.           partitioned databases, the minimal size is 1024, otherwise the
  1677.           size can be any positive value.
  1678.  
  1679. 00289DBO RSR SELECT-Befehl kann in Restriktionsmodus nicht ausgefⁿhrt oder abgefragt werden
  1680.  
  1681.       Reason: A SQL SELECT statement cannot be retrieved when operating in
  1682.           restriction mode.
  1683.  
  1684.       Remedy: Retrieve the stored SELECT statement while NOT in restriction
  1685.           mode.
  1686.  
  1687. 00290 DBO NDB Ungⁿltiger NEWDB-Wert
  1688.  
  1689.       Reason: This error is currently undocumented.
  1690.  
  1691.       Remedy: Contact your local Gupta Technologies certified technical
  1692.           support center for assistance.
  1693.  
  1694. 00291 DBO BME LOGBACKUP-Modus ist bereits aktiviert
  1695.  
  1696.       Reason: Trying to set LOGBACKUP mode ON and the mode is already ON.
  1697.  
  1698.       Remedy: None.  Informational only.
  1699.  
  1700. 00292 DBO BMD LOGBACKUP-Modus ist bereits deaktiviert
  1701.  
  1702.       Reason: Trying to set LOGBACKUP mode OFF and the mode is already OFF.
  1703.  
  1704.       Remedy: None.  Informational only.
  1705.  
  1706. 00293 DBO OSC Die bestimmte Funktion ist in der SQLBase-Version 4.0 oder spΣter nicht mehr gⁿltig
  1707.  
  1708.       Reason: The specified operation is no longer valid for SQLBase 4.0 or
  1709.           later.
  1710.  
  1711.       Remedy: The specified operation has been replaced with an alternative
  1712.           way of doing the same operation.    Check the documentation to
  1713.           determine the alternate technique.  The obsolete function are
  1714.           described in the SQLBase C API Reference Manual, Chapter 5:
  1715.           C/API Functions by Category.
  1716.  
  1717. 00294 DBO NOL RECOVERY it OFF, keine Protokolldatei vorhanden
  1718.  
  1719.       Reason: This error is currently undocumented.
  1720.  
  1721.       Remedy: Contact your local Gupta Technologies certified technical
  1722.           support center for assistance.
  1723.  
  1724. 00295 DBO NSS Arbeitssitzung ohne Server
  1725.  
  1726.       Reason: Trying to compile a server command in a non-server session
  1727.  
  1728.       Remedy: Use a server session to compile a server command.
  1729.  
  1730. 00296 DBO IVC Gesicherte Codeseite stimmt nicht ⁿberein. ▄berprⁿfen Sie die Datei SQL.INI und code.pag
  1731.  
  1732.       Reason: This error is currently undocumented.
  1733.  
  1734.       Remedy: Contact your local Gupta Technologies certified technical
  1735.           support center for assistance.
  1736.  
  1737. 00297 DBO CSC Befehl kann nicht gestapelt werden
  1738.  
  1739.       Reason: Trying to store a server command
  1740.  
  1741.       Remedy: Run the command directly instead of storing the command and
  1742.           executing it later.
  1743.  
  1744. 00298 DBO CRM MAIN kann nicht wiederhergestellt oder nach vorne gerollt werden, wΣhrend partionierte Datenbank aktiviert ist.
  1745.  
  1746.       Reason: While partitioned databases are enabled the MAIN database must
  1747.           be availble to SQLBase to access partitioned  databases.     The
  1748.           availability of the  MAIN  database  prevents  it  from  being
  1749.           restored from a backup.
  1750.  
  1751.       Remedy: Disconnect all clients  accessing  partitioned  databases  and
  1752.           disable partitioned databases.
  1753.  
  1754. 00299 DBO IOL Ungⁿltige Optimizerstufe
  1755.  
  1756.       Reason: Optimizer level must be 1 or 2.
  1757.  
  1758.       Remedy: Use correct optimizer level, 1 or 2.
  1759.  
  1760.  
  1761. The errors documented in this section of the Error Guide are errors that
  1762. generally occur during the execution of a SQL operation.
  1763.  
  1764. 00301 EXE NCH Kann nur Daten vom Typ CHAR verΣndern
  1765.  
  1766.       Reason: Attempting to alter the size of an existing column and the
  1767.           column is not defined as CHAR or VARCHAR.
  1768.  
  1769.       Remedy: Do not attempt to change to size of a column that is not defined
  1770.           as CHAR or VARCHAR.
  1771.  
  1772. 00302 EXE NAV ALTER-Recht ist in Ansichten nicht erlaubt
  1773.  
  1774.       Reason: Cannot grant ALTER privileges on a VIEW
  1775.  
  1776.       Remedy: None.  Views cannot be altered, only tables can be altered.
  1777.           Therefore the granting of ALTER on a VIEW is not allowed.
  1778.  
  1779. 00303 EXE CRI Ansicht kann nicht mit einer ROWID-Spalte angelegt werden
  1780.  
  1781.       Reason: Trying to use the ROWID column in a VIEW.
  1782.  
  1783.       Remedy: None.  The ROWID is not allowed as a column within a VIEW.
  1784.  
  1785. 00304 EXE CDT Tabelle eines anderen Benutzers kann nicht gel÷scht werden
  1786.  
  1787.       Reason: A user is attempting to drop a table that s/he did not create
  1788.           and s/he does not have DBA authority.
  1789.  
  1790.       Remedy: None.  Do not attempt to drop someone else's table unless you
  1791.           have DBA authority.
  1792.  
  1793. 00305 EXE CDI Indizierte Spalte kann nicht gel÷scht werden
  1794.  
  1795.       Reason: Attempting to drop a column that has an index on it.
  1796.  
  1797.       Remedy: Drop all indexes associated with the column before dropping the
  1798.           column.
  1799.  
  1800. 00306 EXE CDS Systeminformationen k÷nnen nicht gel÷scht werden
  1801.  
  1802.       Reason: Attempting to drop a column, index, or table that is considered
  1803.           system information.
  1804.  
  1805.       Remedy: None.  Do not attempt to drop columns, indexes, or tables that
  1806.           are considered system catalog information.
  1807.  
  1808. 00307 EXE STO Kann nach Stapeln nicht ausgefⁿhrt werden
  1809.  
  1810.       Reason: Attempting to execute a command that was just previously stored.
  1811.           You cannot execute a command that was just stored.
  1812.  
  1813.       Remedy: You must retrieve the stored commands and then execute it or
  1814.           compile the command after storing and execute it.  A stored
  1815.           command is stored in the database and is not available for
  1816.           immediate execution until it is retreived.
  1817.  
  1818. 00308 EXE CIL Memodaten k÷nnen nicht indiziert werden
  1819.  
  1820.       Reason: Attempting to create an index on a column that is defined as
  1821.           long data.
  1822.  
  1823.       Remedy: None.  You cannot create an index on a long data column.
  1824.  
  1825. 00309 EXE MSC Systemspalte kann nicht verΣndert werden
  1826.  
  1827.       Reason: Attempting to modify a system column.
  1828.  
  1829.       Remedy: None.  You cannot modify a system column.
  1830.  
  1831. 00310 EXE RSC Systemspalte kann nicht umbenannt werden
  1832.  
  1833.       Reason: Attempting to rename a system column.
  1834.  
  1835.       Remedy: None.  You cannot rename a system column.
  1836.  
  1837. 00311 EXE RST Systemtabelle kann nicht umbenannt werden
  1838.  
  1839.       Reason: Attempting to rename a system table.
  1840.  
  1841.       Remedy: None.  You cannot rename a system table.
  1842.  
  1843. 00312 EXE RCD Einem DBA kann die Connect-Berechtigung nicht entzogen werden
  1844.  
  1845.       Reason: Attempting to revoke connect from a user with DBA authority.
  1846.  
  1847.       Remedy: None.  SYSADM must revoke DBA authority before being able to
  1848.           revoke connect authority.
  1849.  
  1850. 00313 EXE RND Einem Nicht-DBA k÷nnen keine DBA-Rechte entzogen werden
  1851.  
  1852.       Reason: Attempting to revoke DBA authority from a user that does not
  1853.           have DBA authority.
  1854.  
  1855.       Remedy: None.  You cannot revoke an authority a user does not hold.
  1856.  
  1857. 00314 EXE RRD Einem DBA k÷nnen Resource-Rechte nicht entzogen werden
  1858.  
  1859.       Reason: Attempting to revoke RESOURCE authority from a user that has DBA
  1860.           authority.
  1861.  
  1862.       Remedy: None.  You cannot revoke RESOURCE authority from a user who has
  1863.           DBA authority.  Having DBA authority automatically means that
  1864.           s/he has all privileges on any table in the database, including
  1865.           the right to grant, modify, or revoke the privileges of any
  1866.           other user in the database.  A DBA may not, however, create new
  1867.           users, nor may a DBA change the passwords or authority levels of
  1868.           existing users.  These privileges are restricted to SYSADM.
  1869.           Having DBA authority means you also have RESOURCE authority.
  1870.  
  1871. 00315 EXE CAE Die Spalte besteht bereits
  1872.  
  1873.       Reason: Attempting to add or rename a column and the column name already
  1874.           exists.
  1875.  
  1876.       Remedy: Use a different column name from the one currently being used in
  1877.           the ALTER TABLE statement.
  1878.  
  1879. 00316 EXE CST Die Spalte wurde doppelt spezifiziert
  1880.  
  1881.       Reason: Specified a column with a duplicate column name.
  1882.  
  1883.       Remedy: Do not use the column name that has already been used.
  1884.  
  1885. 00317 EXE DND Eingabe ist kein Datum
  1886.  
  1887.       Reason: Attempting to insert or update a column defined as DATE, TIME,
  1888.           DATETIME, or TIMESTAMP and the data attempting to be inserted or
  1889.           updated is not a date.
  1890.  
  1891.       Remedy: Check data to verify that the data being inserted or updated is
  1892.           a date.
  1893.  
  1894. 00318 EXE DNN Eingabe ist nicht numerisch
  1895.  
  1896.       Reason: Attempting to insert or update a column defined as SMALLINT,
  1897.           INTEGER, DECIMAL, FLOAT, or NUMBER and the data attempting to be
  1898.           inserted or updated is nonnumeric.
  1899.  
  1900.       Remedy: Check data to verify that the data being inserted or updated is
  1901.           numeric.
  1902.  
  1903. 00319 EXE IAE Der Index besteht bereits
  1904.  
  1905.       Reason: The CREATE INDEX statement sought to create an index when there
  1906.           is already an index with the same name defined.
  1907.  
  1908.       Remedy: The CREATE INDEX statement cannot be executed.  No new index was
  1909.           created, and the existing index was not altered or modified.
  1910.           Either the existing index must be dropped or another name must
  1911.           be chosen for the new index.
  1912.  
  1913. 00320 EXE IDE Der Index existiert nicht
  1914.  
  1915.       Reason: Attempting to drop an index that does not exist.
  1916.  
  1917.       Remedy: Find correct index name and retry.  All current index names can
  1918.           be determined by querying the SYSINDEXES tables.
  1919.  
  1920. 00321 EXE VTL Eingabe/Aktualisierungswert ist zu lang
  1921.  
  1922.       Reason: The application is attempting to execute an UPDATE, INSERT, or
  1923.           COMMENT ON and the update or insert value, or the comment is too
  1924.           big for the column as it was defined at CREATE TABLE time.
  1925.  
  1926.       Remedy: Identify which column exceeds the defined length and correct the
  1927.           application program.  When binding data, be sure the specified
  1928.           bind variable lengths does not exceed the defined length in the
  1929.           database.  If using a program data type of string (SQLPSTR), be
  1930.           sure that you have provided the null terminating character so
  1931.           that SQLBase can calculate the data length accurately.  Check
  1932.           the length of the object column, and correct the program or SQL
  1933.           statement so that the length of the UPDATE, INSERT, or COMMENT
  1934.           ON string does not exceed the maximum.
  1935.  
  1936. 00322 EXE IDV Ungⁿltige Daten fⁿr diese Ansicht
  1937.  
  1938.       Reason: Attempting to insert or update through a view and the view
  1939.           definition rejects the data because it does not conform to the
  1940.           view definition.    View checking is provided if the optional WITH
  1941.           CHECK OPTION clause if used when creating the view.
  1942.  
  1943.       Remedy: Examine the view definition to determine why the requested
  1944.           INSERT or UPDATE was rejected.  Note that this may be a
  1945.           data-dependent condititon.
  1946.  
  1947. 00323 EXE IVN Ungⁿltige Zahl
  1948.  
  1949.       Reason: Attempting to convert character data to numeric data and the
  1950.           conversion fails.
  1951.  
  1952.       Remedy: Verify that numeric data is being provided for conversion.
  1953.  
  1954. 00324 EXE IBV Ungⁿltige Programmbindevariable
  1955.  
  1956.       Reason: The application is attempting to use a bind variable that was
  1957.           not bound with a sqlbnn or sqlbnd function call.
  1958.  
  1959.       Remedy: Bind all bind variables with either a sqlbnn or sqlbnd function
  1960.           call before attempting to execute the statement (sqlexe).
  1961.  
  1962. 00325 EXE NCC NICHT VERWENDET
  1963.  
  1964.       Reason: This is error code is currently not used by the SQLBase system.
  1965.  
  1966.       Remedy: None.  This error code should never occur.  If you get this
  1967.           error, contact your local Gupta Technologies certified
  1968.           technical support center.
  1969.  
  1970. 00326 EXE NGA Kein Recht zum Erteilen von Rechten
  1971.  
  1972.       Reason: Attempting to grant or revoke connect authority, or grant table
  1973.           privileges and the user attempting this does not have the
  1974.           authority.  Only SYSADM can grant or revoke connect authority.
  1975.           Table privileges can only be granted by users who have the
  1976.           authority to do so.  A user with DBA authority may grant
  1977.           privileges on any tables or views in the database.  A user with
  1978.           RESOURCE authority may grant privileges only on tables created
  1979.           by him or on views that are based completely on tables created
  1980.           by him.  A user with only CONNECT authority may not grant
  1981.           privileges.  Nor does user possess privileges to any tables or
  1982.           views unless the user is explicitly granted such privileges via
  1983.           a GRANT statement.
  1984.  
  1985.       Remedy: None.  You can not grant or revoke connect authority, or grant
  1986.           table privileges when the user attempting this does not have the
  1987.           authority.
  1988.  
  1989. 00327 EXE NIA NICHT VERWENDET
  1990.  
  1991.       Reason: This is error code is currently not used by the SQLBase system.
  1992.  
  1993.       Remedy: None.  This error code should never occur.  If you get this
  1994.           error, contact your local Gupta Technologies certified
  1995.           technical support center.
  1996.  
  1997. 00328 EXE NRE Keine Resource-Rechte
  1998.  
  1999.       Reason: Attempting to create a table and the user does not possess
  2000.           resource authority to create tables.
  2001.  
  2002.       Remedy: None.  A user must possess resource authority to create tables,
  2003.           to drop those tables, and to grant, modify or revoke privileges
  2004.           to those tables for valid users of the database.
  2005.  
  2006. 00329 EXE NRA Kein Recht, Rechte zu entziehen
  2007.  
  2008.       Reason: Attempting to revoke RESOURCE authority, table privileges, or
  2009.           DBA authority and the user attempting this does not have the
  2010.           authority.  Only SYSADM can revoke DBA or RESOURCE authority.
  2011.           Table privileges can only be revoked by users who have the
  2012.           authority to do so.  A user with DBA authority may revoke
  2013.           privileges on any tables or views in the database.  A user with
  2014.           RESOURCE authority may revoke privileges only on tables created
  2015.           by him or on views that are based completely on tables created
  2016.           by him.  A user with only CONNECT authority may not revoke
  2017.           privileges.
  2018.  
  2019.       Remedy: None.  You can not revoke RESOURCE authority, table privileges,
  2020.           or DBA authority when the user attempting this does not have the
  2021.           authority.
  2022.  
  2023. 00330 EXE NCN Ist keine Spalte
  2024.  
  2025.       Reason: Attempting to create a view and a named column does not exist
  2026.           in the target table or view.
  2027.  
  2028.       Remedy: Modify the CREATE VIEW statement so that all named columns
  2029.           correspond to columns in the base table or base view.
  2030.  
  2031. 00331 EXE NEV Nicht genⁿgend Ungleich-Null-Werte
  2032.  
  2033.       Reason: Attempting to execute an INSERT statement and there exist
  2034.           columns defined as NOT NULL which have not been provided values.
  2035.  
  2036.       Remedy: Modify the INSERT statement so that a value exists for each
  2037.           column defined in the CREATE TABLE statement as NOT NULL.
  2038.  
  2039. 00332 EXE PEU Rechte bestehen fⁿr Benutzer
  2040.  
  2041.       Reason: Attempting to execute a REVOKE CONNECT FROM a specific user and
  2042.           the named user has been granted table privileges.
  2043.  
  2044.       Remedy: Revoke the user's privileges before attempting to revoke the
  2045.           user's connect authority.
  2046.  
  2047. 00333 EXE SNI CHAR-Gr÷▀e nicht vergr÷▀ert
  2048.  
  2049.       Reason: Attempting to execute a ALTER TABLE with a MODIFY clause and the
  2050.           length of a character column is attempting to be decreased.
  2051.  
  2052.       Remedy: Modify the ALTER TABLE statement.  The length of a character
  2053.           column may be increased but not decreased.
  2054.  
  2055. 00334 EXE SYA Synonym, Tabelle oder Ansicht besteht bereits
  2056.  
  2057.       Reason: Trying to execute a CREATE SYNONYM and the synonym name already
  2058.           exists as another synonym name, table name, or view name.
  2059.  
  2060.       Remedy: Modify the CREATE SYNONYM statement by using a unique name.
  2061.  
  2062. 00335 EXE SYT Synonym, Tabelle oder Ansicht existiert nicht
  2063.  
  2064.       Reason: Attempting to execute a CREATE SYNONYM and the target table name
  2065.           or view name does not exist.
  2066.  
  2067.       Remedy: Modify the CREATE SYNONYM statement to use an existing table
  2068.           name or view name.
  2069.  
  2070. 00336 EXE TVE NICHT VERWENDET
  2071.  
  2072.       Reason: This is error code is currently not used by the SQLBase system.
  2073.  
  2074.       Remedy: None.  This error code should never occur.  If you get this
  2075.           error, contact your local Gupta Technologies certified
  2076.           technical support center.
  2077.  
  2078. 00337 EXE TEU Tabelle(n) besteht (bestehen) fⁿr bestimmte(n) Benutzer
  2079.  
  2080.       Reason: Attempting to execute a REVOKE CONNECT FROM a specific user and
  2081.           the tables exist for the name user.
  2082.  
  2083.       Remedy: Drop the tables for the name user before attempting to revoke
  2084.           the user's connect authority.
  2085.  
  2086. 00338 EXE TVS Tabelle, Ansicht oder Synonym besteht bereits
  2087.  
  2088.       Reason: Attempting to execute a CREATE VIEW or ALTER TABLE with a RENAME
  2089.           TABLE clause and the table name or view name already exists.
  2090.  
  2091.       Remedy: Modify the CREATE VIEW or ALTER TABLE statement to use a unique
  2092.           name.
  2093.  
  2094. 00339 EXE TMC Zuviele Spalten
  2095.  
  2096.       Reason: Attempting to execute a CREATE VIEW and the number of columns
  2097.           exceeds the maximum number of columns allowed for any table or
  2098.           view.
  2099.  
  2100.       Remedy: Modify the CREATE VIEW statement so it does not exceed the
  2101.           maximum number of columns allowed.
  2102.  
  2103. 00340 EXE UNE Benutzer existiert nicht
  2104.  
  2105.       Reason: Attempting to execute a CREATE TABLE, CREATE VIEW, GRANT table
  2106.           privilege, or REVOKE and the name user does not exist.
  2107.  
  2108.       Remedy: Modify the statement to use an existing user.
  2109.  
  2110. 00341 EXE VIN INSERT/UPDATE-Wert ist null, und die Zielspalte darf keinen Nulleintrag enthalten
  2111.  
  2112.       Reason: The update or insert value was NULL, but the target column was
  2113.           declared as NOT NULL in the table definition.  Consequently,
  2114.           null values cannot be inserted into that column, and values in
  2115.           that column cannot be set to NULL by an update.
  2116.  
  2117.       Remedy: The statement cannot be execute.    Examine the definition of the
  2118.           target table to determine which columns of the table have the
  2119.           NOT NULL attribute, and correct the SQL statement accordingly.
  2120.           DB2 treats "empty" strings and NULL strings different whereas
  2121.           SQLBase does not distinguish between an "empty" string and a
  2122.           NULL string.  This problem may be occurring because a CHAR or
  2123.           VARCHAR column has been defined as NOT NULL WITH DEFAULT and
  2124.           SQLBase use a one character space for the DEFAULT.  For DB2
  2125.           compatibility you may want to consider NOT using the NOT NULL
  2126.           WITH DEFAULT characteristic for CHAR or VARCHAR columns.
  2127.  
  2128. 00342 EXE WPS NUR INTERN VERWENDET: Warten/Postieren
  2129.  
  2130.       Reason: This is error is only used internally by the SQLBase system.
  2131.  
  2132.       Remedy: None.  This error code should never occur.  If you get this
  2133.           error, contact your local Gupta Technologies certified
  2134.           technical support center.
  2135.  
  2136. 00343 EXE ICR Schwerer SQLBase-Systemfehler (EXE ICR)
  2137.  
  2138.       Reason: This is a Fatal Error.
  2139.  
  2140.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  2141.           If a FAIL.SQL file is available, then save it.  Attempt to
  2142.           reproduce the problem via a SQL script, scenario, or using the
  2143.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  2144.           Contact your local Gupta certified technical support center.
  2145.  
  2146. 00344 EXE CAS Kein Speicherplatz mehr auf Datenbank-Computer (EXE CAS)
  2147.  
  2148.       Reason: Not enough memory at the database engine to perform the
  2149.           requested task.
  2150.  
  2151.       Remedy: Check available memory at the database computer.    Attempt to
  2152.           make more memory available.  To make more memory available for
  2153.           the database engine, you can reduce size of the CACHE.
  2154.  
  2155. 00345 EXE IOP Ungⁿltiges oder altes Pa▀wort
  2156.  
  2157.       Reason: Attempting to execute an ALTER PASSWORD and the old password is
  2158.           not valid.
  2159.  
  2160.       Remedy: Modify the ALTER PASSWORD statement to use a valid old password.
  2161.  
  2162. 00346 EXE NVL NULL-Wert erhalten
  2163.  
  2164.       Reason: Attempting to execute a ALTER TABLE with a MODIFY clause.  The
  2165.           statement attempts to change a column which contains NULL values
  2166.           to a column with a definition of NOT NULL.
  2167.  
  2168.       Remedy: Modify the ATLER TABLE statement or modify the data.  If a
  2169.           column contains NULL values, you will not be able to redefine
  2170.           the column as NOT NULL.
  2171.  
  2172. 00347 EXE INB NICHT VERWENDET
  2173.  
  2174.       Reason: This is error code is currently not used by the SQLBase system.
  2175.  
  2176.       Remedy: None.  This error code should never occur.  If you get this
  2177.           error, contact your local Gupta Technologies certified
  2178.           technical support center.
  2179.  
  2180. 00348 EXE CNA Current-Of-Cursor ist in dieser Abfrage nicht erlaubt
  2181.  
  2182.       Reason: The CURRENT OF cursorname clause is not allow with this query.
  2183.  
  2184.       Remedy: None.  CURRENT OF cursorname cannot be used with this SELECT
  2185.           statements.  The CURRENT OF cursorname clause is not allowed
  2186.           under certain conditions, including a query which contains a
  2187.           join, GROUP BY, DISTINCT, aggregate functions, or a UNION.
  2188.  
  2189. 00349 EXE CDD Aktueller Cursor befindet sich in anderer Datenbank
  2190.  
  2191.       Reason: A CURRENT OF cursorname clause is referring to a cursor which is
  2192.           currently referencing the same table name but in different
  2193.           databases.  For example: With a first cursor named C1 connected
  2194.           to the PAYROLL database, it is performing a select like:
  2195.  
  2196.            SELECT * FROM EMP
  2197.  
  2198.           and with a second cursor connected to the PERSONNEL database, it
  2199.           is attempting to perform an update or delete similiar to:
  2200.  
  2201.            UPDATE EMP SET BONUS = 100 WHERE CURRENT OF C1
  2202.  
  2203.       Remedy: Revise SQL statements so that both statements refer to a table
  2204.           named in the same database.
  2205.  
  2206. 00350 EXE DBA DBA-Rechte werden fⁿr diese Operation ben÷tigt
  2207.  
  2208.       Reason: Attempting to execute a CREATE or DROP a public SYNONYM and user
  2209.           does not have DBA authority.
  2210.  
  2211.       Remedy: None.  A user cannot CREATE or DROP a public SYNONYM without DBA
  2212.           authority.
  2213.  
  2214. 00351 EXE CDA Es k÷nnen nicht alle Spalten gel÷scht werden
  2215.  
  2216.       Reason: Attempting to execute a ALTER TABLE with a DROP column clause
  2217.           and the column is the lone remaining column in the table.
  2218.  
  2219.       Remedy: None.  You cannot drop the the last column of a table.  Each
  2220.           table must have at least one column.  If necessary, drop the
  2221.           entire table with a DROP TABLE statement.
  2222.  
  2223. 00352 EXE KTL Indexschlⁿsselgr÷▀e ist zu gro▀
  2224.  
  2225.       Reason: Attempting to execute a CREATE INDEX and the key size exceeds
  2226.           the maximum key size allowed.
  2227.  
  2228.       Remedy: Modify the index attempting to be created.  The maximum size of
  2229.           an index is limited occuring to a formula documented in the SQL
  2230.           Language Reference manual under the CREATE INDEX statement.
  2231.  
  2232. 00353 EXE NSY Kein Synonym
  2233.  
  2234.       Reason: Attempting to execute a DROP SYNONYM and the named synonym is
  2235.           not a synonym but a table name.
  2236.  
  2237.       Remedy: Modify the DROP SYNONYM statement to use a synonym name or if
  2238.           you really want to drop a table then use a DROP TABLE statement.
  2239.  
  2240. 00354 EXE NVW Der in Ansicht entfernen bestimmte Name ist ein Tabellennamen
  2241.  
  2242.       Reason: The name specified in the DROP VIEW statement identifies a
  2243.           table, rather than a view.  The DROP VIEW statement can only
  2244.           have a view as its target.  The DROP TABLE statement must be
  2245.           used to drop a table.
  2246.  
  2247.       Remedy: Correct the DROP VIEW statement so that the view name is
  2248.           specified correctly (with the proper qualifier).    If the intent
  2249.           is to drop the specified table, then the DROP TABLE statement
  2250.           must be used.
  2251.  
  2252. 00355 EXE NTB Der in Tabelle entfernen bestimmte Namen ist ein Ansichtenname
  2253.  
  2254.       Reason: The name specified in the DROP TABLE statement identifies a
  2255.           view, rather than a table.  The DROP TABLE statement can only
  2256.           have a table as its target.  The DROP VIEW statement must be
  2257.           used to drop a view.
  2258.  
  2259.       Remedy: Correct the DROP TABLE statement so that the table name is
  2260.           specified correctly (with the proper qualifier).    If the intent
  2261.           is to drop the specified view, then the DROP VIEW statement must
  2262.           be used.
  2263.  
  2264. 00356 EXE MBC Funktionsparameter mⁿssen Konstanten sein
  2265.  
  2266.       Reason: Attempting to execute a CREATE INDEX statement the index is
  2267.           using @Functions that are not constants.
  2268.  
  2269.       Remedy: Modify the CREATE INDEX statement so that all function
  2270.           parameters are constants.
  2271.  
  2272. 00357 EXE PTL Funktionsparameter zu gro▀
  2273.  
  2274.       Reason: Attempting to execute a CREATE INDEX statement the index is
  2275.           using @Functions that are too large.
  2276.  
  2277.       Remedy: Modify the CREATE INDEX statement so that all function
  2278.           parameters are not larger than the maximum data value length of
  2279.           254 characters.
  2280.  
  2281. 00358 EXE NIR Numerischer Eingabewert liegt nicht im Bereich
  2282.  
  2283.       Reason: Attempting to convert either a character string or a number to a
  2284.           data format and the converted date is not within an acceptable
  2285.           date range.
  2286.  
  2287.       Remedy: Verify that the dates being put in the database are between
  2288.           January 1, 001 and December 31, 9999.
  2289.  
  2290. 00359 EXE OCT Auf Tabelle wurde mit anderem Cursor verwiesen
  2291.  
  2292.       Reason: One cursor is attempted to modify or drop a table when another
  2293.           offending cursor is currently using that table.
  2294.  
  2295.       Remedy: Commit, disconnect or have the offending cursor compile a
  2296.           statement using a different table.
  2297.  
  2298. 00360 EXE RSD Dem SYSADM k÷nnen DBA-Rechte nicht entzogen werden
  2299.  
  2300.       Reason: Attempting to execute a REVOKE DBA authority from a specific
  2301.           user and the user happens to be SYSADM.
  2302.  
  2303.       Remedy: None.  You cannot revoke DBA authority from SYSADM.
  2304.  
  2305. 00361 EXE ACI ADJUSTING-CURSOR ist mit eingebettetem SELECT nicht erlaubt
  2306.  
  2307.       Reason: Attempting to execute an INSERT using ADJUSTING cursor name
  2308.           when the INSERT statement has an embedded SELECT statement.
  2309.  
  2310.       Remedy: None.  You cannot use the ADJUSTING cursor clause with an
  2311.           INSERT statement that uses an embedded SELECT statement.
  2312.  
  2313. 00362 EXE DHR Benutzer hat keine RESOURCE-Rechte
  2314.  
  2315.       Reason: Attempting to execute a REVOKE RESOURCE authority statement
  2316.           from a user that does not have resource authority.
  2317.  
  2318.       Remedy: None.  You cannot revoke an authority from a user when the user
  2319.           does not have that authority.
  2320.  
  2321. 00363 EXE TVC Zuviele Ansichtspalten festgelegt
  2322.  
  2323.       Reason: Attempting a CREATE VIEW and the number of columns defined in
  2324.           the new target view exceed the number of column selected from
  2325.           the source table or view.
  2326.  
  2327.       Remedy: Correct the SQL CREATE VIEW statement.  The number of columns
  2328.           select to formed the view must match the number of columns
  2329.           defined in the new view.
  2330.  
  2331. 00364 EXE TSE Zuviele Ansichten-auswΣhlen-Ausdrⁿcke
  2332.  
  2333.       Reason: Attempting a CREATE VIEW and the number columns selected from
  2334.           the source table or view exceed the number of columns defined in
  2335.           the new target view.
  2336.  
  2337.       Remedy: Correct the SQL CREATE VIEW statement.  The number of columns
  2338.           select to formed the view must match the number of columns
  2339.           defined in the new view.
  2340.  
  2341. 00365 EXE PNO Dieser Benutzer hat diese Rechte nicht
  2342.  
  2343.       Reason: Attempting to execute a REVOKE table privilege from a specific
  2344.           user and the user does not have the name privileges.
  2345.  
  2346.       Remedy: None.  You cannot revoke a table privilege that does not exist.
  2347.  
  2348. 00366 EXE IIF @function wird als Indexfunktion nicht unterstⁿtzt
  2349.  
  2350.       Reason: Trying to specify a @function in the creation of an index and
  2351.           this particular @function is not supported by SQLBase as a
  2352.           possible index.
  2353.  
  2354.       Remedy: None.  This @function is not supported as an index.
  2355.  
  2356. 00367 EXE SNR Kleiner Integerwert liegt nicht im Bereich
  2357.  
  2358.       Reason: A small integer value is not within the acceptable range of
  2359.           SMALLINT values.
  2360.  
  2361.       Remedy: Correct small integer value so that it is within the range of an
  2362.           acceptable SMALLINT values.  An SMALLINT value can have up to 5
  2363.           digits of precision: -32,768 to +32,767
  2364.  
  2365. 00368 EXE INR Integerwert ist nicht im Bereich
  2366.  
  2367.       Reason: An integer value is not within the acceptable range of INTEGER
  2368.           values.
  2369.  
  2370.       Remedy: Correct integer value so that it is within the range of an
  2371.           acceptable INTEGER value.  An INTEGER value can have up to 10
  2372.           digits of precision: -2,147,483,648 to +2,147,483,647
  2373.  
  2374. 00369 EXE CCD Aktueller Cursor befindet sich in anderer Tabelle
  2375.  
  2376.       Reason: A CURRENT OF cursorname clause is referring to a cursor which is
  2377.           currently referencing a different table.    For example: With one
  2378.           cursor named C1 connected to the PAYROLL database, it is
  2379.           performing a select like: SELECT * FROM SALARY and with a second
  2380.           cursor connected to the PAYROLL database, it is attempting to
  2381.           perform an update or delete similiar to:
  2382.            UPDATE EMP SET BONUS = 100 WHERE CURRENT OF C1
  2383.  
  2384.       Remedy: Revise SQL statements so that both statements refer to the same
  2385.           table named in the same database.
  2386.  
  2387. 00370 EXE OOC Tabelle kann nur einen Hashed-Clusterindex enthalten
  2388.  
  2389.       Reason: A table can only have one CLUSTERED HASHED index.
  2390.  
  2391.       Remedy: None.  Only one CLUSTERED HASHED index can be created for any
  2392.           one table.
  2393.  
  2394. 00371 EXE TNE Clusterindex kann nur in einer leeren Tabelle angelegt werden
  2395.  
  2396.       Reason: A clustered hashed index can only be created on an empty table.
  2397.  
  2398.       Remedy: Unload the target table.    Recreate the table and create the
  2399.           clustered hashed index before inserting any data back into the
  2400.           table.
  2401.  
  2402. 00372 EXE IPD Clusterindex wurde in dieser Tabelle bereits festgelegt
  2403.  
  2404.       Reason: A table can only have one CLUSTERED HASHED index.
  2405.  
  2406.       Remedy: None.  Only one CLUSTERED HASHED index can be created for any
  2407.           one table.
  2408.  
  2409. 00373 EXE NIV INDEX-Recht wird in Ansichten nicht unterstⁿtzt
  2410.  
  2411.       Reason: This error is currently undocumented.
  2412.  
  2413.       Remedy: Contact your local Gupta Technologies certified technical
  2414.           support center for assistance.
  2415.  
  2416. 00374 EXE NNE NOT-NULL-Spalte mu▀ nur einer leeren Tabelle hinzugefⁿgt werden
  2417.  
  2418.       Reason: A NOT NULL column cannot be added to table that already has
  2419.           existing rows because if it could then those columns of the
  2420.           existing rows would have NULL values in columns defined as NOT
  2421.           NULL which would violate the definition.
  2422.  
  2423.       Remedy: Add the column without defining the column as NOT NULL.  Update
  2424.           the existing rows by putting data in the newly created columm
  2425.           and then ALTER the column to NOT NULL.
  2426.  
  2427. 00375 EXE UAC NICHT VERWENDET
  2428.  
  2429.       Reason: This is error code is currently not used by the SQLBase system.
  2430.  
  2431.       Remedy: None.  This error code should never occur.  If you get this
  2432.           error, contact your local Gupta Technologies certified
  2433.           technical support center.
  2434.  
  2435. 00376 EXE DSR NICHT VERWENDET
  2436.  
  2437.       Reason: This is error code is currently not used by the SQLBase system.
  2438.  
  2439.       Remedy: None.  This error code should never occur.  If you get this
  2440.           error, contact your local Gupta Technologies certified
  2441.           technical support center.
  2442.  
  2443. 00377 EXE CUI Statistiken k÷nnen bei einem Hashed-Clusterindex nicht aktualisiert werden
  2444.  
  2445.       Reason: Cannot update the index statistics on a CLUSTERED HASHED INDEX
  2446.           because some limitations exist on the index statistics regarding
  2447.           @function indexes.
  2448.  
  2449.       Remedy: None.  Because of @function index limitations, the CLUSTERED
  2450.           HASHED INDEX cannot be statistically updated.
  2451.  
  2452. 00378 EXE RCN ROWCOUNT wird bei Nur-Lesen-Aktionen nicht unterstⁿtzt
  2453.  
  2454.       Reason: The ROWCOUNT command is not support for read-only transactions.
  2455.  
  2456.       Remedy: None.  The ROWCOUNT operation is not supported for read-only
  2457.           transactions.
  2458.  
  2459. 00379 EXE BRL Schwerer SQLBase-Systemfehler (EXE BRL)
  2460.  
  2461.       Reason: This is a Fatal Error.
  2462.  
  2463.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  2464.           If a FAIL.SQL file is available, then save it.  Attempt to
  2465.           reproduce the problem via a SQL script, scenario, or using the
  2466.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  2467.           Contact your local Gupta certified technical support center.
  2468.  
  2469. 00380 EXE CEF CHECK EXISTS fehlgeschlagen
  2470.  
  2471.       Reason: An UPDATE statement was succesful but no rows were updated.
  2472.  
  2473.       Remedy: None.  Informational only.  The CHECK EXIST clause on the SQL
  2474.           UPDATE statement specifies to return this error if at least one
  2475.           row is NOT updated.
  2476.  
  2477. 00381 EXE CAN NICHT VERWENDET
  2478.  
  2479.       Reason: This is error code is currently not used by the SQLBase system.
  2480.  
  2481.       Remedy: None.  This error code should never occur.  If you get this
  2482.           error, contact your local Gupta Technologies certified
  2483.           technical support center.
  2484.  
  2485. 00382 EXE UFV Fremde Schlⁿsselwerte stimmen nicht ⁿberein
  2486.  
  2487.       Reason: Insert of a new row into a dependent table violates a
  2488.           referential integrity constraint because there was no
  2489.           parent row in the parent table.
  2490.  
  2491.       Remedy: None.  Informational only.  This insert violates an existing
  2492.           referential integrity contraint, therefore to maintain the
  2493.           integrity of the data this insert is not allowed.  For more
  2494.           information on how to enhance or customize this SQLBase error
  2495.           message, see the SQLBase Language Reference Manual, Chapter 11:
  2496.           Referential Integrity, in the section entitled "Enhancing
  2497.           SQLBase Error Messages".
  2498.  
  2499. 00383 EXE CDR Zeile kann nicht gel÷scht werden, solange nicht alle untergeordneten abhΣngigen Zeilen gel÷scht wurden
  2500.  
  2501.       Reason: Delete of a row from a parent table when there are dependent
  2502.           rows in a dependent table.
  2503.  
  2504.       Remedy: None.  Informational only.  This delete violates an existing
  2505.           referential integrity contraint, therefore to maintain the
  2506.           integrity of the data this delete is not allowed.  For more
  2507.           information on how to enhance or customize this SQLBase error
  2508.           message, see the SQLBase Language Reference Manual, Chapter 11:
  2509.           Referential Integrity, in the section entitled "Enhancing
  2510.           SQLBase Error Messages".
  2511.  
  2512. 00384 EXE AMO Eine auf sich selbst verweisende Tabelle erlaubt nur eine INSERT... SELECT-Zeile
  2513.  
  2514.       Reason: The target table of the INSERT has foreign keys defined and one
  2515.           of them is self-referencing and the INSERT statement involves an
  2516.           INSERT with a nested subSELECT which returns multiple rows, so
  2517.           the INSERT operation is not permitted.
  2518.  
  2519.       Remedy: None.  Informational only.  The INSERT with a nested subSELECT
  2520.           may violate an existing referential integrity contraint,
  2521.           therefore to maintain the integrity of the data this INSERT is
  2522.           not allowed.  For more information on how to enhance or
  2523.           customize this SQLBase error message, see the SQLBase Language
  2524.           Reference Manual, Chapter 11: Referential Integrity, in the
  2525.           section entitled "Enhancing SQLBase Error Messages".
  2526.  
  2527. 00385 EXE UPO UPDATE Mit dem PrimΣrschlⁿssel kann nicht mehr als eine Spalte aktualisiert werden
  2528.  
  2529.       Reason: The specified UPDATE statement involves the updating of the
  2530.           primary key and the updating of multiple rows at one time.
  2531.  
  2532.       Remedy: Update of a primary key is must be done one row at a time.
  2533.  
  2534. 00386 EXE CUR Zeile kann nicht aktualisiert werden, bevor nicht alle abhΣngigen untergeordneten Zeilen gel÷scht wurden
  2535.  
  2536.       Reason: Attempting to update rows in a parent table when there are
  2537.           dependent rows in a dependent table.
  2538.  
  2539.       Remedy: None.  Informational only.  You must delete all dependent rows
  2540.           before you can update the target row otherwise you will be
  2541.           violating an existing referential integrity contraint.  For more
  2542.           information on how to enhance or customize this SQLBase error
  2543.           message, see the SQLBase Language Reference Manual, Chapter 11:
  2544.           Referential Integrity, in the section entitled "Enhancing
  2545.           SQLBase Error Messages".
  2546.  
  2547. 00387 EXE NUI Bevor ein PrimΣrschlⁿssel hinzugefⁿgt werden kann, mu▀ ein entsprechender eindeutiger Index existieren
  2548.  
  2549.       Reason: Attempting to add a primary key and no suitable unique index has
  2550.           been found to use after the system scanned all available
  2551.           indexes.
  2552.  
  2553.       Remedy: Create an unique index on the column or columns to be included
  2554.           in the primary key.  The column or columns making up the key
  2555.           must be unique and defined as NOT NULL.
  2556.  
  2557. 00388 EXE AFU Das Hinzufⁿgen eines fremden Schlⁿssels hat nichtⁿbereinstimmende fremde Schlⁿsselwerte zur Folge
  2558.  
  2559.       Reason: Attempting to add a foreign key and the addition of this foreign
  2560.           key will cause unmatched foreign key values which would violate
  2561.           the referential integrity constraints.
  2562.  
  2563.       Remedy: A foreign key references a primary key in the same table or
  2564.           another table.  To add the foreign key, verify and correct the
  2565.           values in the foreign key column or columns so that their values
  2566.           match the values in the primay key column or columns.
  2567.  
  2568. 00389 EXE IND NICHT VERWENDET
  2569.  
  2570.       Reason: This is error code is currently not used by the SQLBase system.
  2571.  
  2572.       Remedy: None.  This error code should never occur.  If you get this
  2573.           error, contact your local Gupta Technologies certified
  2574.           technical support center.
  2575.  
  2576. 00390 EXE CCL Memodaten k÷nnen nicht verglichen werden
  2577.  
  2578.       Reason: Attempting a comparison on a LONG VARCHAR data element or
  2579.           attempting to use a LIKE clause with a LONG VARCHAR data type.
  2580.  
  2581.       Remedy: Correct SQL statement and retry.
  2582.  
  2583. 00391 EXE FUP RR oder CS-Sperre wird fⁿr SELECT FOR UPDATE-Anweisung ben÷tigt
  2584.  
  2585.       Reason: Trying to perform a SQL SELECT statement using the FOR UPDATE OF
  2586.           clause and the transaction is not in the DB2 compatible locking
  2587.           modes of Read Repeatibility (RR) or Cursor Stability (CS).
  2588.  
  2589.       Remedy: Use the lock isolation modes of Read Repeatibility (RR) or
  2590.           Cursor Stability (CS) when using the FOR UPDATE OF clause in the
  2591.           SQL SELECT statement.
  2592.  
  2593. 00392 EXE NDR Kein DDL-Statement in Nur-Lesen-Datenbank
  2594.  
  2595.       Reason: SQL Data Definition Language statements are not allowed when
  2596.           operating with a READONLY database.
  2597.  
  2598.       Remedy: None.  Informational only.  To perform DDL statements on this
  2599.           database, you need to restart the database so READONLY database
  2600.           is disabled.
  2601.  
  2602. 00393 EXE UEE Fⁿr diesen Fehler besteht bereits eine Benutzerfehlermeldung
  2603.  
  2604.       Reason: Performing an ALTER TABLE and trying to ADD a new user error for
  2605.           the specified error class and a user error already exists.
  2606.  
  2607.       Remedy: Perform an ALTER TABLE and MODIFY the existing user error for
  2608.           the specified error class rather than attempting to create a new
  2609.           user error when one already exists.
  2610.  
  2611. 00394 EXE UEN Fⁿr diesen Fehler existiert keine Benutzerfehlermeldung
  2612.  
  2613.       Reason: Performing an ALTER TABLE and trying to DROP or MODIFY an
  2614.           existing user error for a specific error class and the user
  2615.           error does not exist.
  2616.  
  2617.       Remedy: None.  Informational only.  You cannot drop or modify a user
  2618.           error that does not exist.  Verify that you have specified the
  2619.           correct user error number.
  2620.  
  2621. 00395 EXE CDK PrimΣrschlⁿssel- oder Fremdschlⁿsselspalten k÷nnen nicht entfernt werden
  2622.  
  2623.       Reason: This error is currently undocumented.
  2624.  
  2625.       Remedy: Contact your local Gupta Technologies certified technical
  2626.           support center for assistance.
  2627.  
  2628. 00396 EXE NUV UPDATE Privilege auf Views nicht m÷glich
  2629.  
  2630.       Reason: This error is currently undocumented.
  2631.  
  2632.       Remedy: Contact your local Gupta Technologies certified technical
  2633.           support center for assistance.
  2634.  
  2635. 00397 EXE CIR Kein Index auf der Basis der ROWID erlaubt
  2636.  
  2637.       Reason: Attempting to create an index on a table's ROWID.
  2638.  
  2639.       Remedy: None.  You cannot create an index on a table's ROWID.
  2640.  
  2641.  
  2642. The errors documented in this section of the Error Guide are errors that
  2643. generally occur during database access.
  2644.  
  2645. 00401 DBA COD Datenbank kann nicht ge÷ffnet werden
  2646.  
  2647.       Reason: The specified database cannot be opened.    SQLBase cannot open
  2648.           the file named "x:\dbdir\dbname\dbname.DBS" where x:\dbdir is
  2649.           either the default, c:\SQLBASE, or modified with the DBDIR
  2650.           SQL.INI configuration keyword.  In a multiuser network
  2651.           configuration, this error indicates that your network is working
  2652.           correctly, but the database system was unable to locate the
  2653.           specified database filename.
  2654.  
  2655.           This problem can also occur with a SQLGateway when you leave out
  2656.           the protocol type in the SERVERNAME parameter that the client
  2657.           uses to communicate with the gateway (i.e.  SQLNBIOS).
  2658.  
  2659.           For example, the SERVERNAME = SERVER33,SQLQUEUE
  2660.                    DBNAME = DB2DBMS, SQLQUEUE, SQLNBIOS
  2661.  
  2662.           won't allow a remote client process (using SQLNBIOS on the LAN
  2663.           to communicate with the SQLGateway machine) to connect to the
  2664.           SQLGateway machine.
  2665.  
  2666.       Remedy: Verify a database file exists with a operating system directory
  2667.           command: "DIR x:\dbdirname\dbname\dbname.DBS".  The default
  2668.           drive letter and dbdirname is c:\SQLBASE unless overridden with
  2669.           a DBDIR SQL.INI configuration keyword parameter.    Verify that
  2670.           the DBDIR configuration keyword is not missing or pointing to a
  2671.           wrong database directory.  Verify that the DBNAME configuration
  2672.           keyword is specified for the named database.  Verify that the
  2673.           SERVER configuration keyword is not missing or conflicting with
  2674.           other network server names.  In your CONFIG.SYS file, verify
  2675.           that you have a least a 40 files set with the FILES=40
  2676.           parameter.  If all of the above fails, try using a different
  2677.           database name or try connecting to the database in single user
  2678.           mode at the same machine.  If you can connect with a local
  2679.           engine it probably indicates that a network configuration error
  2680.           exists.  If you can connect with a new database name it probably
  2681.           indicates that the previous named database was never properly
  2682.           initialized.
  2683.  
  2684. 00402 DBA MBI NICHT VERWENDET
  2685.  
  2686.       Reason: This is error code is currently not used by the SQLBase system.
  2687.  
  2688.       Remedy: None.  This error code should never occur.  If you get this
  2689.           error, contact your local Gupta Technologies certified
  2690.           technical support center.
  2691.  
  2692. 00403 DBA CCB NICHT VERWENDET
  2693.  
  2694.       Reason: This is error code is currently not used by the SQLBase system.
  2695.  
  2696.       Remedy: None.  This error code should never occur.  If you get this
  2697.           error, contact your local Gupta Technologies certified
  2698.           technical support center.
  2699.  
  2700. 00404 DBA IPW Ungⁿltiges Pa▀wort
  2701.  
  2702.       Reason: Attempting to connect to the database with a bad password.
  2703.  
  2704.       Remedy: Use a valid database name, user name, and password.
  2705.  
  2706. 00405 DBA IUN Ungⁿltiger Benutzername
  2707.  
  2708.       Reason: Trying to connect to the database with an invalid user name.
  2709.  
  2710.       Remedy: Use a valid database name, user name, and password.
  2711.  
  2712. 00406 DBA DNA NICHT VERWENDET
  2713.  
  2714.       Reason: This is error code is currently not used by the SQLBase system.
  2715.  
  2716.       Remedy: None.  This error code should never occur.  If you get this
  2717.           error, contact your local Gupta Technologies certified
  2718.           technical support center.
  2719.  
  2720. 00407 DBA CAD Kein Speicherplatz mehr auf Datenbank-Computer (DBA CAD)
  2721.  
  2722.       Reason: Not enough memory at the database engine to perform the
  2723.           requested task.
  2724.  
  2725.       Remedy: Check available memory at the database computer.    Attempt to
  2726.           make more memory available.  To make more memory available for
  2727.           the database engine, you can reduce size of the CACHE.
  2728.  
  2729. 00408 DBA DON Datenbank bereits ohne Wiederherstellung ge÷ffnet
  2730.  
  2731.       Reason: Attempting to connect to the database with recovery ON and the
  2732.           database server has already been connected to with recovery OFF.
  2733.  
  2734.       Remedy: None.  It is recommended that recovery is always ON.
  2735.  
  2736. 00409 DBA DOR Datenbank wurde bereits mit Wiederherstellung ge÷ffnet
  2737.  
  2738.       Reason: Attempting to connect to the database with recovery OFF and the
  2739.           database server has already been connected to with recovery ON.
  2740.  
  2741.       Remedy: None.  It is recommended that recovery is always ON.
  2742.  
  2743. 00410 DBA IDF Ungⁿltige Datenbankdatei
  2744.  
  2745.       Reason: The specified database cannot be opened.    The version number of
  2746.           the specified database conflicts with the version of SQLBase
  2747.           software being used.
  2748.  
  2749.       Remedy: Verify that the version of the database file (.DBS) corresponds
  2750.           to the software version number.
  2751.  
  2752. 00411 DBA IDB Ungⁿltiger Datenbankname
  2753.  
  2754.       Reason: A specified database name has been determined to be invalid.
  2755.  
  2756.       Remedy: A valid database file name must consist of one to eight
  2757.           characters.  The file name is not allowed to have any invalid
  2758.           characters such as: . " / \ [ ] : | < > + = ; , and ASCII
  2759.           characters less than 20 hexadecimal.  Additionally, the
  2760.           character "space" is consider invalid.
  2761.  
  2762. 00412 DBA CRF NICHT VERWENDET
  2763.  
  2764.       Reason: This is error code is currently not used by the SQLBase system.
  2765.  
  2766.       Remedy: None.  This error code should never occur.  If you get this
  2767.           error, contact your local Gupta Technologies certified
  2768.           technical support center.
  2769.  
  2770. 00413 DBA NLS NICHT VERWENDET
  2771.  
  2772.       Reason: This is error code is currently not used by the SQLBase system.
  2773.  
  2774.       Remedy: None.  This error code should never occur.  If you get this
  2775.           error, contact your local Gupta Technologies certified
  2776.           technical support center.
  2777.  
  2778. 00414 DBA RIP Verbindungen nicht erlaubt, bis Wiederherstellen abgeschlossen ist
  2779.  
  2780.       Reason: Online restore is in progress, other connection to the database
  2781.           are not allowed until the restore operation is complete.
  2782.  
  2783.       Remedy: Wait until restore operation is complete.
  2784.  
  2785. 00415 DBA REC Wiederherstellung ist in Arbeit
  2786.  
  2787.       Reason: Recovery operation is in progress, other connection to the
  2788.           database are not allowed until the recovery operation is
  2789.           complete.
  2790.  
  2791.       Remedy: Wait until the recovery operation is complete.
  2792.  
  2793. 00416 DBA OUC Operation nicht erlaubt, solange andere Benutzer angeschlossen sind
  2794.  
  2795.       Reason: The operation attempting to be performed is not allowed while
  2796.           other users are connected to the SQLBase Server.
  2797.  
  2798.       Remedy: Try again later or have everyone disconnect from the SQLBase
  2799.           Server so that you can perform your operation.
  2800.  
  2801. 00417 DBA CCD Datenbankdatei kann nicht angelegt werden
  2802.  
  2803.       Reason: Attempting to create a file and a failure has occurred.
  2804.  
  2805.       Remedy: Determine and correct the cause of the create failure.  Run a
  2806.           check disk utility (CHKDSK) for the current operating system to
  2807.           verify the status of disk.  Verify that sufficient disk space is
  2808.           available and verify that the number of files allowed open for
  2809.           the operating system permits the additional file, that is, check
  2810.           the FILES= configuration parameter setting.
  2811.  
  2812. 00418 DBA SDN Wird gerade heruntergefahren
  2813.  
  2814.       Reason: The database is being shutdown, therefore no new users are
  2815.           allowed to connect to the SQLBase Server.
  2816.  
  2817.       Remedy: Try again later, the SQLBase Server is coming down.
  2818.  
  2819. 00419 DBA ICM Inkompatibler Verbindungsmodus
  2820.  
  2821.       Reason: When connecting to a database, a check is made to see if the
  2822.           requested connect mode is compatible with other users' connect
  2823.           modes to the database.  This error occurs because the requested
  2824.           connect mode conflicts with another user already connected to
  2825.           the database.
  2826.  
  2827.       Remedy: Wait and connect later or verify how other users are connected
  2828.           and attempt to connect in mode that is compatible with the
  2829.           existing users connected to the database.  Possible conflicts
  2830.           could be:
  2831.            Current User Connect Modes    Requested connect mode
  2832.            --------------------------    ----------------------
  2833.            No recovery connect        Server connect
  2834.            Normal connect        Server connect
  2835.            Read-only database connect    Server connect
  2836.            Read-only database connect    Recovery connect
  2837.  
  2838. 00420 DBA 001 NICHT VERWENDET
  2839.  
  2840.       Reason: This is error code is currently not used by the SQLBase system.
  2841.  
  2842.       Remedy: None.  This error code should never occur.  If you get this
  2843.           error, contact your local Gupta Technologies certified
  2844.           technical support center.
  2845.  
  2846. 00421 DBA ISC Ungⁿltige Serververbindung
  2847.  
  2848.       Reason: The specified database server name is invalid.
  2849.  
  2850.       Remedy: Correct the database server name and retry again.
  2851.  
  2852. 00422 DBA IBI NICHT VERWENDET
  2853.  
  2854.       Reason: This is error code is currently not used by the SQLBase system.
  2855.  
  2856.       Remedy: None.  This error code should never occur.  If you get this
  2857.           error, contact your local Gupta Technologies certified
  2858.           technical support center.
  2859.  
  2860. 00423 DBA NRS Kein entfernter Server
  2861.  
  2862.       Reason: A server name has been specified for a local single user
  2863.           database engine.
  2864.  
  2865.       Remedy: Correct the server name specification.  Server names are not
  2866.           necessary to communicate with a local database.  If you are
  2867.           using the API, specify a pointer to a null terminator to
  2868.           indicate a null server name for a local database.
  2869.  
  2870. 00424 DBA RFI NICHT VERWENDET
  2871.  
  2872.       Reason: This is error code is currently not used by the SQLBase system.
  2873.  
  2874.       Remedy: None.  This error code should never occur.  If you get this
  2875.           error, contact your local Gupta Technologies certified
  2876.           technical support center.
  2877.  
  2878. 00425 DBA ROE Nur-Lesen-Modus wurde bereits aktiviert
  2879.  
  2880.       Reason: Attempting to enable Read-Only mode and the database is already
  2881.           in Read-Only mode.
  2882.  
  2883.       Remedy: None.  The database is already a Read-Only database.
  2884.  
  2885. 00426 DBA ROD Nur-Lesen-Modus wurde bereits deaktiviert
  2886.  
  2887.       Reason: Attempting to disable Read-Only mode and the database is not a
  2888.           Read-Only mode database.
  2889.  
  2890.       Remedy: None.  The database is not a Read-Only mode database.
  2891.  
  2892. 00427 DBA CCH History-Datei konnte auf Datenbank-Computer nicht angelegt werden
  2893.  
  2894.       Reason: Attempting to create a file and a failure has occurred.
  2895.  
  2896.       Remedy: Determine and correct the cause of the create failure.  Run a
  2897.           check disk utility (CHKDSK) for the current operating system to
  2898.           verify the status of disk.  Verify that sufficient disk space is
  2899.           available and verify that the number of files allowed open for
  2900.           the operating system permits the additional file, that is, check
  2901.           the FILES= configuration parameter setting.
  2902.  
  2903. 00428 DBA IRS Ungⁿltige Parametereinstellung fⁿr READONLY-Transaktionswert
  2904.  
  2905.       Reason: Settine whether read-only transactions are allowed and the
  2906.           setting is something other than OFF (0), ON (1), or DEFAULT (2).
  2907.  
  2908.       Remedy: Use a proper read-only transaction option and resubmit.
  2909.  
  2910. 00429 DBA DNB Datenbankname ist zu lang
  2911.  
  2912.       Reason: Specified database name exceeds 8 characters.
  2913.  
  2914.       Remedy: Correct specified database name.
  2915.  
  2916. 00430 DBA NFS Kein freier Cursorslot beim Versuch, die Datenbank herunterzufahren, vorhanden
  2917.  
  2918.       Reason: This error is currently undocumented.
  2919.  
  2920.       Remedy: Contact your local Gupta Technologies certified technical
  2921.           support center for assistance.
  2922.  
  2923. 00431 DBA CLF SΣubern von Protokolldateien beim Wiederherstellen vom Snapshot fehlgeschlagen
  2924.  
  2925.       Reason: The SQLBase system is trying to read the log files to be deleted
  2926.           from the log file directory and a failure has occurred.
  2927.  
  2928.       Remedy: Verify that the log file directory as specified by the SQL.INI
  2929.           configuration parameter LOGDIR exists and try again.
  2930.  
  2931. 00432 DBA ISI Sortierinformationen stimmen in dieser Datenbank nicht ⁿberein. ▄berprⁿfen Sie die Datei SQL.INI
  2932.  
  2933.       Reason: This error is currently undocumented.
  2934.  
  2935.       Remedy: Contact your local Gupta Technologies certified technical
  2936.           support center for assistance.
  2937.  
  2938. 00433 DBA RDE Nur-Lesen-Datenbank wurde bereits aktiviert
  2939.  
  2940.       Reason: Attempting to enable a Read-Only database and the database is
  2941.           already a Read-Only database.
  2942.  
  2943.       Remedy: None.  The database is already a Read-Only database.
  2944.  
  2945. 00434 DBA RDD Nur-Lesen-Datenbank wurde bereits deaktiviert
  2946.  
  2947.       Reason: Attempting to disable a Read-Only database and the database is
  2948.           not a Read-Only database.
  2949.  
  2950.       Remedy: None.  The database is not a Read-Only database.
  2951.  
  2952. 00435 DBA TDM TEMPDIR mu▀ bestimmt werden, um auf Nur-Lesen-Datenbanken zugreifen zu k÷nnen
  2953.  
  2954.       Reason: Attempting to start or enable a Read-Only database and no
  2955.           TEMPDIR environment variable is set.
  2956.  
  2957.       Remedy: Enter the following line in the AUTOEXEC.BAT file:
  2958.            TEMPDIR=C:\SQLBASE\databasename
  2959.           All the temporary files associated with a Read-Only database
  2960.           will then be stored in the TEMPDIR\databasename directory.
  2961.  
  2962. 00436 DBA CTF TemporΣre Datei kann nicht angelegt werden
  2963.  
  2964.       Reason: Attempting to create a file and a failure has occurred.
  2965.  
  2966.       Remedy: Determine and correct the cause of the create failure.  Run a
  2967.           check disk utility (CHKDSK) for the current operating system to
  2968.           verify the status of disk.  Verify that sufficient disk space is
  2969.           available and verify that the number of files allowed open for
  2970.           the operating system permits the additional file, that is, check
  2971.           the FILES= configuration parameter setting.
  2972.  
  2973. 00437 DBA ICP Codeseiten stimmen in dieser Datenbank nicht ⁿberein
  2974.  
  2975.       Reason: This error is currently undocumented.
  2976.  
  2977.       Remedy: Contact your local Gupta Technologies certified technical
  2978.           support center for assistance.
  2979.  
  2980. 00438 DBA CCT TemporΣre Datei kann nicht angelegt werden
  2981.  
  2982.       Reason: This error is currently undocumented.
  2983.  
  2984.       Remedy: Contact your local Gupta Technologies certified technical
  2985.           support center for assistance.
  2986.  
  2987. 00439 DBA ILW Kleinschreibtabelle stimmt in dieser Tabelle nicht ⁿberein
  2988.  
  2989.       Reason: This error is currently undocumented.
  2990.  
  2991.       Remedy: Contact your local Gupta Technologies certified technical
  2992.           support center for assistance.
  2993.  
  2994. 00440 DBA IUP Gro▀schreibtabelle stimmt in dieser Tabelle nicht ⁿberein
  2995.  
  2996.       Reason: This error is currently undocumented.
  2997.  
  2998.       Remedy: Contact your local Gupta Technologies certified technical
  2999.           support center for assistance.
  3000.  
  3001. 00441 DBA NDB Database nicht vorhanden
  3002.  
  3003.      Reason: The specified database does not exist.
  3004.  
  3005.       Remedy: Create the specified database.
  3006.  
  3007. 00442 DBA COF Database kann nicht ge÷ffnet werden; nicht genⁿgend file handles 
  3008.  
  3009.       Reason: The specified database cannot be opened because the number
  3010.           of file handles needed to complete the open would exceed the
  3011.           number of file handles available.  The file handles are
  3012.           provided by the operating envioronment, ie., DOS, Windows,
  3013.           OS/2.
  3014.  
  3015.       Remedy: Investigate why so many databases were previously being
  3016.           connected by your application(s).  Reduce these connections
  3017.           to a minimum.  Deinstalling one or more databases will also
  3018.           make more file handles available.
  3019.  
  3020.  
  3021.  
  3022. The errors documented in this section of the Error Guide are errors that
  3023. relate to database memory workspace.
  3024.  
  3025. 00501 WSP ISP NICHT VERWENDET
  3026.  
  3027.       Reason: This is error code is currently not used by the SQLBase system.
  3028.  
  3029.       Remedy: None.  This error code should never occur.  If you get this
  3030.           error, contact your local Gupta Technologies certified
  3031.           technical support center.
  3032.  
  3033. 00502 WSP CNA Arbeitsbereich kann nicht zugewiesen werden
  3034.  
  3035.       Reason: Not enough memory at the database engine to perform the
  3036.           requested task.
  3037.  
  3038.       Remedy: Check available memory at the database computer.    Attempt to
  3039.           make more memory available.  To make more memory available for
  3040.           the database engine, you can reduce size of the CACHE.
  3041.  
  3042. 00503 WSP TMC NICHT VERWENDET
  3043.  
  3044.       Reason: This is error code is currently not used by the SQLBase system.
  3045.  
  3046.       Remedy: None.  This error code should never occur.  If you get this
  3047.           error, contact your local Gupta Technologies certified
  3048.           technical support center.
  3049.  
  3050. 00504 WSP CRP Zeiger kann nicht relokalisiert werden
  3051.  
  3052.       Reason: This error indicates that a pointer which is part of a view or
  3053.           stored command cannot be relocated.  This relocation happens
  3054.           when a view is referenced in a subsequent command or when a
  3055.           stored command is retrieved.  The object that is being retrieved
  3056.           (either a view or a stored command) may be bad.  A pointer
  3057.           stored in the view or stored command is no longer valid and
  3058.           therefore cannot be relocated.  Also, the pointer might be good
  3059.           but the data structure used to relocate the pointer may be bad.
  3060.  
  3061.       Remedy: The problem can be resolved by dropping the view or restoring
  3062.           the stored command.  Run a CHECK DATABASE to verify the
  3063.           integrity of the database.
  3064.  
  3065. 00505 WSP WLE Arbeitsbereichsgrenzen ⁿberschritten
  3066.  
  3067.       Reason: This error is currently undocumented.
  3068.  
  3069.       Remedy: Contact your local Gupta Technologies certified technical
  3070.           support center for assistance.
  3071.  
  3072.  
  3073. The errors in this section of the Error Guide are errors that generally
  3074. relate to database dictionary operations.
  3075.  
  3076. 00601 DIC ITN Tabelle wurde nicht angelegt
  3077.  
  3078.       Reason: Specified table name does not exist.
  3079.  
  3080.       Remedy: Submit the SQL statement with a correct (existing) table name.
  3081.  
  3082. 00602 DIC TAE  NICHT VERWENDET
  3083.  
  3084.       Reason: This is error code is currently not used by the SQLBase system.
  3085.  
  3086.       Remedy: None.  This error code should never occur.  If you get this
  3087.           error, contact your local Gupta Technologies certified
  3088.           technical support center.
  3089.  
  3090. 00603 DIC ICN Ungⁿltige Spaltennummer
  3091.  
  3092.       Reason: A column has been specified by column number and the column
  3093.           number specified cannot be translated to an appropriate column
  3094.           name.
  3095.  
  3096.       Remedy: Specify a valid column number.
  3097.  
  3098. 00604 DIC IIN Ungⁿltige Indexnummer
  3099.  
  3100.       Reason: Trying to execute a SQL EXPLAIN statement and SQLBase cannot
  3101.           find a particular index looking it up by index number.
  3102.  
  3103.       Remedy: If the EXPLAIN was bases on a STORED command, drop the stored
  3104.           command, restore it, and try the EXPLAIN again.  If the EXPLAIN
  3105.           was following a compile of a SQL statement, run a CHECK DATABASE
  3106.           to verify the consistency of the database.
  3107.  
  3108. 00605 DIC SYN Synonym existiert nicht
  3109.  
  3110.       Reason: Attempting to drop a synonym and the specified synonym name does
  3111.           not exist.
  3112.  
  3113.       Remedy: Specify a correct (existing) synonym name.
  3114.  
  3115.  
  3116. The errors in this section of the Error Guide are errors that generally
  3117. relate to database virtual input/output operations.
  3118.  
  3119. 00701 VIO OCP Zuwenig Cachespeicherseiten
  3120.  
  3121.       Reason: Database cache is page buffers which can hold the most recently
  3122.           referenced database pages.  The number of cache pages is
  3123.           specified by the CACHE configuration parameter in the SQL.INI
  3124.           file.  Whenever a database page is accessed, SQLBase first
  3125.           locates a cache page for it.  Sometimes the database page is
  3126.           already in cache.  If the page is not already in the cache,
  3127.           SQLBase locates a free cache page and reads the database page
  3128.           into the cache page and then uses the cache page buffer to
  3129.           perform the desired operation.  While SQLBase is performing
  3130.           operations on the cache page it refers to them as "inuse".  Once
  3131.           SQLBase is done with the cache page, it is marked as "free".
  3132.  
  3133.           To locate free cache pages, SQLBase searches a LRU (least
  3134.           recently used) chain.  If SQLBase goes thru the entire LRU chain
  3135.           and all pages are inuse, it waits and then gives this error
  3136.           message.    If some user frees up a page while SQLBase is waiting,
  3137.           SQLBase uses that page.
  3138.  
  3139.       Remedy: There are various alternatives to avoiding this problem.    One
  3140.           quick solution is to increase the number of CACHE pages.
  3141.           Another solution is to reduce the number of "inuse" cache pages
  3142.           by reducing the span of the active transactions.    That is,
  3143.           COMMIT the transaction more often in the application programs.
  3144.           Also, try eliminating any unnecessary drivers at the database
  3145.           computer such as DOS16M settings, HIMEM.SYS, etc.
  3146.  
  3147. 00702 VIO PNO Schwerer SQLBase-Systemfehler (VIO PNO)
  3148.  
  3149.       Reason: This is a Fatal Error.
  3150.  
  3151.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3152.           If a FAIL.SQL file is available, then save it.  Attempt to
  3153.           reproduce the problem via a SQL script, scenario, or using the
  3154.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3155.           Contact your local Gupta certified technical support center.
  3156.  
  3157. 00703 VIO IPN Schwerer SQLBase-Systemfehler (VIO IPN)
  3158.  
  3159.       Reason: This is a Fatal Error.
  3160.  
  3161.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3162.           If a FAIL.SQL file is available, then save it.  Attempt to
  3163.           reproduce the problem via a SQL script, scenario, or using the
  3164.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3165.           Contact your local Gupta certified technical support center.
  3166.  
  3167. 00704 VIO DUN Wiederherstellung fehlgeschlagen; Datenbank kann nicht wiederhergestellt werden
  3168.  
  3169.       Reason: The database has crashed with recovery turned OFF.
  3170.  
  3171.       Remedy: The database is unrecoverable.  Backup the database to the most
  3172.           recent backup copy of the database.  All transactions since the
  3173.           most recent backup will be losted.
  3174.  
  3175. 00705 VIO NFT NICHT VERWENDET
  3176.  
  3177.       Reason: This is error code is currently not used by the SQLBase system.
  3178.  
  3179.       Remedy: None.  This error code should never occur.  If you get this
  3180.           error, contact your local Gupta Technologies certified
  3181.           technical support center.
  3182.  
  3183. 00706 VIO CPO Kein Speicherplatz mehr auf Datenbank-Computer (VIO CPO)
  3184.  
  3185.       Reason: Not enough memory at the database engine to perform the
  3186.           requested task.
  3187.  
  3188.       Remedy: Check available memory at the database computer.    Attempt to
  3189.           make more memory available.  To make more memory available for
  3190.           the database engine, you can reduce size of the CACHE.
  3191.  
  3192. 00707 VIO TBO Kein Speicherplatz mehr auf Datenbank-Computer (VIO TBO)
  3193.  
  3194.       Reason: Not enough memory at the database engine to perform the
  3195.           requested task.
  3196.  
  3197.       Remedy: Check available memory at the database computer.    Attempt to
  3198.           make more memory available.  To make more memory available for
  3199.           the database engine, you can reduce size of the CACHE.
  3200.  
  3201. 00708 VIO NUR Keine Aktualisierung bei Nur-Lesen-Sperre
  3202.  
  3203.       Reason: Attempting an INSERT, UPDATE, or DELETE while in Read Only (RO)
  3204.           Locking Isolation Mode.
  3205.  
  3206.       Remedy: Change isolation mode setting to either Read Repeatibility (RR),
  3207.           Cursor Stability (CS), or Release Lock (RL) locking isolation
  3208.           mode before attempting to do an INSERT, UPDATE, or DELETE.
  3209.  
  3210. 00709 VIO BVC Schwerer SQLBase-Systemfehler (VIO BVC)
  3211.  
  3212.       Reason: This is a Fatal Error.
  3213.  
  3214.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3215.           If a FAIL.SQL file is available, then save it.  Attempt to
  3216.           reproduce the problem via a SQL script, scenario, or using the
  3217.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3218.           Contact your local Gupta certified technical support center.
  3219.  
  3220. 00710 VIO ILP Schwerer SQLBase-Systemfehler (VIO ILP)
  3221.  
  3222.       Reason: This is a Fatal Error.
  3223.  
  3224.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3225.           If a FAIL.SQL file is available, then save it.  Attempt to
  3226.           reproduce the problem via a SQL script, scenario, or using the
  3227.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3228.           Contact your local Gupta certified technical support center.
  3229.  
  3230. 00711 VIO MEM NICHT VERWENDET
  3231.  
  3232.       Reason: This is error code is currently not used by the SQLBase system.
  3233.  
  3234.       Remedy: None.  This error code should never occur.  If you get this
  3235.           error, contact your local Gupta Technologies certified
  3236.           technical support center.
  3237.  
  3238. 00712 VIO CAT Kein Speicherplatz mehr auf Datenbank-Computer (VIO CAT)
  3239.  
  3240.       Reason: Not enough memory at the database engine to perform the
  3241.           requested task.
  3242.  
  3243.       Remedy: Check available memory at the database computer.    Attempt to
  3244.           make more memory available.  To make more memory available for
  3245.           the database engine, you can reduce size of the CACHE.
  3246.  
  3247. 00713 VIO CAF Kein Speicherplatz mehr auf Datenbank-Computer (VIO CAF)
  3248.  
  3249.       Reason: Not enough memory at the database engine to perform the
  3250.           requested task.
  3251.  
  3252.       Remedy: Check available memory at the database computer.    Attempt to
  3253.           make more memory available.  To make more memory available for
  3254.           the database engine, you can reduce size of the CACHE.
  3255.  
  3256. 00714 VIO ILT Schwerer SQLBase-Systemfehler (VIO ILT)
  3257.  
  3258.       Reason: This is a Fatal Error.
  3259.  
  3260.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3261.           If a FAIL.SQL file is available, then save it.  Attempt to
  3262.           reproduce the problem via a SQL script, scenario, or using the
  3263.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3264.           Contact your local Gupta certified technical support center.
  3265.  
  3266. 00715 VIO RFI Rollforward wurde unterbrochen; Datenbanksicherung mu▀ wiederhergestellt werden
  3267.  
  3268.       Reason: A ROLLFORWARD operation was unexpectedly interrupted.
  3269.  
  3270.       Remedy: To restore the database, the RESTORE operation must be restarted
  3271.           from the beginning, again.
  3272.  
  3273. 00716 VIO MOR NICHT VERWENDET
  3274.  
  3275.       Reason: This is error code is currently not used by the SQLBase system.
  3276.  
  3277.       Remedy: None.  This error code should never occur.  If you get this
  3278.           error, contact your local Gupta Technologies certified
  3279.           technical support center.
  3280.  
  3281. 00717 VIO THR NICHT VERWENDET
  3282.  
  3283.       Reason: This is error code is currently not used by the SQLBase system.
  3284.  
  3285.       Remedy: None.  This error code should never occur.  If you get this
  3286.           error, contact your local Gupta Technologies certified
  3287.           technical support center.
  3288.  
  3289. 00718 VIO BKF Wiederhergestellte Sicherungsdatei ben÷tigt Wiederherstellung des Mediums; Verwenden Sie den Befehl ROLLFORWARD
  3290.  
  3291.       Reason: A restore of a backup file has failed.
  3292.  
  3293.       Remedy: The failed restore should be treated as if a media failure has
  3294.           occurred.  Use media recovery techniques.  Use the ROLLFORWARD
  3295.           command.
  3296.  
  3297. 00719 VIO RFS Es kann nicht verbunden werden, bevor Rollforward abgeschlossen wurde. Verwenden Sie den Befehl ROLLFORWARD END
  3298.  
  3299.       Reason: A ROLLFORWARD operation has not been completed and a user is
  3300.           attempting to connect to the database.
  3301.  
  3302.       Remedy: Issue a ROLLFORWARD END command to complete the rollforward
  3303.           operation.
  3304.  
  3305. 00720 VIO UCO Schwerer SQLBase-Systemfehler (VIO UCO)
  3306.  
  3307.       Reason: This is a Fatal Error.
  3308.  
  3309.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3310.           If a FAIL.SQL file is available, then save it.  Attempt to
  3311.           reproduce the problem via a SQL script, scenario, or using the
  3312.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3313.           Contact your local Gupta certified technical support center.
  3314.  
  3315. 00721 VIO DMO Zuviele Seiten fⁿr Demoprogramm zugewiesen
  3316.  
  3317.       Reason: The demonstation system that you are using from Gupta
  3318.           Technologies has exceeded the maximum number of pages allowed
  3319.           for demo purposes.
  3320.  
  3321.       Remedy: Reduce the size of the database or acquire a production version
  3322.           of the latest Gupta Technologies' software.
  3323.  
  3324. 00722 VIO MIP Schwerer SQLBase-Systemfehler (VIO MIP)
  3325.  
  3326.       Reason: This is a Fatal Error.
  3327.  
  3328.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3329.           If a FAIL.SQL file is available, then save it.  Attempt to
  3330.           reproduce the problem via a SQL script, scenario, or using the
  3331.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3332.           Contact your local Gupta certified technical support center.
  3333.  
  3334. 00723 VIO NRD Keine Aktualisierungen bei Nur-Lesen-Datenbanken
  3335.  
  3336.       Reason: Cannot perform INSERTs, UPDATEs, DELETEs, or any other
  3337.           operations that change the database when operating with a Read
  3338.           Only database.
  3339.  
  3340.       Remedy: None.  Informational Only.  Read Only databases do not allow
  3341.           changes, query access is only allowed.
  3342.  
  3343. 00724 VIO PMC Schwerer SQLBase-Systemfehler (VIO PMC)
  3344.  
  3345.       Reason: This is a Fatal Error.
  3346.  
  3347.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3348.           If a FAIL.SQL file is available, then save it.  Attempt to
  3349.           reproduce the problem via a SQL script, scenario, or using the
  3350.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3351.           Contact your local Gupta certified technical support center.
  3352.  
  3353. 00725 VIO ITP Schwerer SQLBase-Systemfehler (VIO ITP)
  3354.  
  3355.       Reason: This is a Fatal Error.
  3356.  
  3357.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3358.           If a FAIL.SQL file is available, then save it.  Attempt to
  3359.           reproduce the problem via a SQL script, scenario, or using the
  3360.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3361.           Contact your local Gupta certified technical support center.
  3362.  
  3363.  
  3364. The errors documented in this section of the Error Guide are for general
  3365. database internal row munipulation operations.
  3366.  
  3367. 00801 ROW END NUR INTERN VERWENDET: Ende der Aktion Einlesen
  3368.  
  3369.       Reason: This is error is only used internally by the SQLBase system.
  3370.  
  3371.       Remedy: None.  This error code should never occur.  If you get this
  3372.           error, contact your local Gupta Technologies certified
  3373.           technical support center.
  3374.  
  3375. 00802 ROW ISA Datenseiten-Speicherplatz reicht nicht aus, um Spalte(n) zu aktualisieren
  3376.  
  3377.       Reason: Attempting to update a row where the size of the row has grown
  3378.           to exceed the maximum space available for this row in the data
  3379.           page and its extent pages.
  3380.  
  3381.       Remedy: Unload the table, drop the table, and recreate the table with a
  3382.           larger PCTFREE value, and then reload the table.    A larger
  3383.           PCTFREE will allow more space on each data page for the growth
  3384.           of rows such as the one attempting to be updated.
  3385.  
  3386. 00803 ROW UEP Schwerer SQLBase-Systemfehler (ROW UEP)
  3387.  
  3388.       Reason: This is a Fatal Error.
  3389.  
  3390.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3391.           If a FAIL.SQL file is available, then save it.  Attempt to
  3392.           reproduce the problem via a SQL script, scenario, or using the
  3393.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3394.           Contact your local Gupta certified technical support center.
  3395.  
  3396. 00804 ROW KTL Schlⁿsselwert ist zu gro▀
  3397.  
  3398.       Reason: The row key value exceeds 255 characters.
  3399.  
  3400.       Remedy: Modify the index being used or modify the ORDER BY or GROUP BY
  3401.           clause being used so the key does not exceed 255 characters.
  3402.           See the formula for computing the size of an index in the CREATE
  3403.           INDEX documentation of the SQL Language Reference Manual.
  3404.  
  3405. 00805 ROW NUD Eindeutige Daten einfⁿgen oder aktualisieren schlie▀t die Bearbeitung von mehrfach eingetragenen Daten aus
  3406.  
  3407.       Reason: The target table of an INSERT or UPDATE operation is constrained
  3408.           (by a CREATE UNIQUE INDEX statement) to have unique values in
  3409.           certain columns.    Completion of the requested INSERT or UPDATE
  3410.           would result in duplicate values occurring in the row.  If a
  3411.           view is the object of the INSERT or UPDATE statement, the table
  3412.           that defines the view is constrained.  The update might also be
  3413.           caused by a DELETE operation of a parent row that cascades to a
  3414.           dependent row with a delete rule of SET NULL.
  3415.  
  3416.       Remedy: Examine the definitions for any UNIQUE INDEX indexes to
  3417.           determine the uniqueness constraints imposed.  For an UPDATE
  3418.           statement, verify that the specified operation is consistent
  3419.           with the uniqueness constraint.  If this does not indicate the
  3420.           error, examine the target table to determine the cause of the
  3421.           problem.    For an INSERT statement, examine the target table to
  3422.           determine which values violate the uniqueness constraint.  If
  3423.           the INSERT statement contains a subquery, match the contents of
  3424.           the table addressed by the subquery and the contents of the
  3425.           target table to determine the cause of the problem.  For a
  3426.           DELETE statement, examine the index key columns in the table
  3427.           that defines the index.  These columns contain a foreign key,
  3428.           which when set NULL on a cascade delete from the target table,
  3429.           causes the duplicate values.
  3430.  
  3431. 00806 ROW IRI Ungⁿltige Zeilenkennung
  3432.  
  3433.       Reason: Application has submitted an invalid  rowid  while  using  the
  3434.           ROWID=<rowid> constraint in the  where  clause.    SQLBase  has
  3435.           determined that this rowid cannot  be  matched  with  any  row
  3436.           within the database.  Valid rowid's are retrieved using SELECT
  3437.           ROWID.
  3438.  
  3439.       Remedy: Correct the rowid by retrieving the correct rowid using SELECT
  3440.           ROWID.
  3441.  
  3442. 00807 ROW IIC Index ist fehlerhaft
  3443.  
  3444.       Reason: The current operation is attempting to use an index that has
  3445.           been found to be corrupt.
  3446.  
  3447.       Remedy: Try to determine which index is corrupt.    The EXPLAIN command
  3448.           may help diagnose which indexes were being used.    Running a
  3449.           CHECK DATABASE may also flush out the corrupt index.  Once you
  3450.           have identified the corrupt index, drop the index, and recreate
  3451.           it.  Run CHECK DATABASE to verify the consistency of the
  3452.           database.  And, finally, rerun the operation that was causing
  3453.           the corrupt index problem to occur.
  3454.  
  3455. 00808 ROW UFA Kein Speicherplatz mehr auf Datenbank-Computer (ROW UFA)
  3456.  
  3457.       Reason: Not enough memory at the database engine to perform the
  3458.           requested task.
  3459.  
  3460.       Remedy: Check available memory at the database computer.    Attempt to
  3461.           make more memory available.  To make more memory available for
  3462.           the database engine, you can reduce size of the CACHE.
  3463.  
  3464. 00809 ROW BPT CHECK DATABASE ist fehlgeschlagen (ROW BPT)
  3465.  
  3466.       Reason: CHECK DATABASE has discovered a problem in the database.
  3467.  
  3468.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3469.           object is damaged, drop that object.  Otherwise, try unloading
  3470.           and reloading the database or restore from a backup copy of the
  3471.           database.  You might also try unloading table by table to save
  3472.           as much of the database as possible.
  3473.  
  3474. 00810 ROW BSN CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BPT)
  3475.  
  3476.       Reason: CHECK DATABASE has discovered a problem in the database.
  3477.  
  3478.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3479.           object is damaged, drop that object.  Otherwise, try unloading
  3480.           and reloading the database or restore from a backup copy of the
  3481.           database.  You might also try unloading table by table to save
  3482.           as much of the database as possible.
  3483.  
  3484. 00811 ROW FSB CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW FSB)
  3485.  
  3486.       Reason: CHECK DATABASE has discovered a problem in the database.
  3487.  
  3488.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3489.           object is damaged, drop that object.  Otherwise, try unloading
  3490.           and reloading the database or restore from a backup copy of the
  3491.           database.  You might also try unloading table by table to save
  3492.           as much of the database as possible.
  3493.  
  3494. 00812 ROW BSO CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BSO)
  3495.  
  3496.       Reason: CHECK DATABASE has discovered a problem in the database.
  3497.  
  3498.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3499.           object is damaged, drop that object.  Otherwise, try unloading
  3500.           and reloading the database or restore from a backup copy of the
  3501.           database.  You might also try unloading table by table to save
  3502.           as much of the database as possible.
  3503.  
  3504. 00813 ROW BSL CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BSL)
  3505.  
  3506.       Reason: CHECK DATABASE has discovered a problem in the database.
  3507.  
  3508.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3509.           object is damaged, drop that object.  Otherwise, try unloading
  3510.           and reloading the database or restore from a backup copy of the
  3511.           database.  You might also try unloading table by table to save
  3512.           as much of the database as possible.
  3513.  
  3514. 00814 ROW BRH CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BRH)
  3515.  
  3516.       Reason: CHECK DATABASE has discovered a problem in the database.
  3517.  
  3518.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3519.           object is damaged, drop that object.  Otherwise, try unloading
  3520.           and reloading the database or restore from a backup copy of the
  3521.           database.  You might also try unloading table by table to save
  3522.           as much of the database as possible.
  3523.  
  3524. 00815 ROW MRH CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW MRH)
  3525.  
  3526.       Reason: CHECK DATABASE has discovered a problem in the database.
  3527.  
  3528.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3529.           object is damaged, drop that object.  Otherwise, try unloading
  3530.           and reloading the database or restore from a backup copy of the
  3531.           database.  You might also try unloading table by table to save
  3532.           as much of the database as possible.
  3533.  
  3534. 00816 ROW URH CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW URH)
  3535.  
  3536.       Reason: CHECK DATABASE has discovered a problem in the database.
  3537.  
  3538.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3539.           object is damaged, drop that object.  Otherwise, try unloading
  3540.           and reloading the database or restore from a backup copy of the
  3541.           database.  You might also try unloading table by table to save
  3542.           as much of the database as possible.
  3543.  
  3544. 00817 ROW BIT CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BIT)
  3545.  
  3546.       Reason: CHECK DATABASE has discovered a problem in the database.
  3547.  
  3548.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3549.           object is damaged, drop that object.  Otherwise, try unloading
  3550.           and reloading the database or restore from a backup copy of the
  3551.           database.  You might also try unloading table by table to save
  3552.           as much of the database as possible.
  3553.  
  3554. 00818 ROW BIL CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BIL)
  3555.  
  3556.       Reason: CHECK DATABASE has discovered a problem in the database.
  3557.  
  3558.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3559.           object is damaged, drop that object.  Otherwise, try unloading
  3560.           and reloading the database or restore from a backup copy of the
  3561.           database.  You might also try unloading table by table to save
  3562.           as much of the database as possible.
  3563.  
  3564. 00819 ROW BEM CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BEM)
  3565.  
  3566.       Reason: CHECK DATABASE has discovered a problem in the database.
  3567.  
  3568.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3569.           object is damaged, drop that object.  Otherwise, try unloading
  3570.           and reloading the database or restore from a backup copy of the
  3571.           database.  You might also try unloading table by table to save
  3572.           as much of the database as possible.
  3573.  
  3574. 00820 ROW TMI CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW TMI)
  3575.  
  3576.       Reason: CHECK DATABASE has discovered a problem in the database.
  3577.  
  3578.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3579.           object is damaged, drop that object.  Otherwise, try unloading
  3580.           and reloading the database or restore from a backup copy of the
  3581.           database.  You might also try unloading table by table to save
  3582.           as much of the database as possible.
  3583.  
  3584. 00821 ROW TFI CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW TFI)
  3585.  
  3586.       Reason: CHECK DATABASE has discovered a problem in the database.
  3587.  
  3588.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3589.           object is damaged, drop that object.  Otherwise, try unloading
  3590.           and reloading the database or restore from a backup copy of the
  3591.           database.  You might also try unloading table by table to save
  3592.           as much of the database as possible.
  3593.  
  3594. 00822 ROW IOS CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW IOS)
  3595.  
  3596.       Reason: CHECK DATABASE has discovered a problem in the database.
  3597.  
  3598.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3599.           object is damaged, drop that object.  Otherwise, try unloading
  3600.           and reloading the database or restore from a backup copy of the
  3601.           database.  You might also try unloading table by table to save
  3602.           as much of the database as possible.
  3603.  
  3604. 00823 ROW SDT CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW SDT)
  3605.  
  3606.       Reason: CHECK DATABASE has discovered a problem in the database.
  3607.  
  3608.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3609.           object is damaged, drop that object.  Otherwise, try unloading
  3610.           and reloading the database or restore from a backup copy of the
  3611.           database.  You might also try unloading table by table to save
  3612.           as much of the database as possible.
  3613.  
  3614. 00824 ROW FDT CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW FDT)
  3615.  
  3616.       Reason: CHECK DATABASE has discovered a problem in the database.
  3617.  
  3618.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3619.           object is damaged, drop that object.  Otherwise, try unloading
  3620.           and reloading the database or restore from a backup copy of the
  3621.           database.  You might also try unloading table by table to save
  3622.           as much of the database as possible.
  3623.  
  3624. 00825 ROW BPL CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BPL)
  3625.  
  3626.       Reason: CHECK DATABASE has discovered a problem in the database.
  3627.  
  3628.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3629.           object is damaged, drop that object.  Otherwise, try unloading
  3630.           and reloading the database or restore from a backup copy of the
  3631.           database.  You might also try unloading table by table to save
  3632.           as much of the database as possible.
  3633.  
  3634. 00826 ROW BEN CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BEN)
  3635.  
  3636.       Reason: CHECK DATABASE has discovered a problem in the database.
  3637.  
  3638.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3639.           object is damaged, drop that object.  Otherwise, try unloading
  3640.           and reloading the database or restore from a backup copy of the
  3641.           database.  You might also try unloading table by table to save
  3642.           as much of the database as possible.
  3643.  
  3644. 00827 ROW BEB CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BEB)
  3645.  
  3646.       Reason: CHECK DATABASE has discovered a problem in the database.
  3647.  
  3648.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3649.           object is damaged, drop that object.  Otherwise, try unloading
  3650.           and reloading the database or restore from a backup copy of the
  3651.           database.  You might also try unloading table by table to save
  3652.           as much of the database as possible.
  3653.  
  3654. 00828 ROW BRC CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BRC)
  3655.  
  3656.       Reason: CHECK DATABASE has discovered a problem in the database.
  3657.  
  3658.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3659.           object is damaged, drop that object.  Otherwise, try unloading
  3660.           and reloading the database or restore from a backup copy of the
  3661.           database.  You might also try unloading table by table to save
  3662.           as much of the database as possible.
  3663.  
  3664. 00829 ROW BRN CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BRN)
  3665.  
  3666.       Reason: CHECK DATABASE has discovered a problem in the database.
  3667.  
  3668.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3669.           object is damaged, drop that object.  Otherwise, try unloading
  3670.           and reloading the database or restore from a backup copy of the
  3671.           database.  You might also try unloading table by table to save
  3672.           as much of the database as possible.
  3673.  
  3674. 00830 ROW USL CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW USL)
  3675.  
  3676.       Reason: CHECK DATABASE has discovered a problem in the database.
  3677.  
  3678.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3679.           object is damaged, drop that object.  Otherwise, try unloading
  3680.           and reloading the database or restore from a backup copy of the
  3681.           database.  You might also try unloading table by table to save
  3682.           as much of the database as possible.
  3683.  
  3684. 00831 ROW BTP CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BTP)
  3685.  
  3686.       Reason: CHECK DATABASE has discovered a problem in the database.
  3687.  
  3688.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3689.           object is damaged, drop that object.  Otherwise, try unloading
  3690.           and reloading the database or restore from a backup copy of the
  3691.           database.  You might also try unloading table by table to save
  3692.           as much of the database as possible.
  3693.  
  3694. 00832 ROW BRP CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW BRP)
  3695.  
  3696.       Reason: CHECK DATABASE has discovered a problem in the database.
  3697.  
  3698.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3699.           object is damaged, drop that object.  Otherwise, try unloading
  3700.           and reloading the database or restore from a backup copy of the
  3701.           database.  You might also try unloading table by table to save
  3702.           as much of the database as possible.
  3703.  
  3704. 00833 ROW RIF Schwerer SQLBase-Systemfehler (ROW RIF)
  3705.  
  3706.       Reason: This is a Fatal Error.
  3707.  
  3708.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3709.           If a FAIL.SQL file is available, then save it.  Attempt to
  3710.           reproduce the problem via a SQL script, scenario, or using the
  3711.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3712.           Contact your local Gupta certified technical support center.
  3713.  
  3714. 00834 ROW CKU UPDATE auf HASHED-CLUSTERINDEX-Schlⁿssel nicht m÷glich
  3715.  
  3716.       Reason: Cannot UPDATE any columns used in a clustered hash index.
  3717.  
  3718.       Remedy: Delete the row and re-insert the row with the new clustered
  3719.           hashed index values.
  3720.  
  3721. 00835 ROW MHV CHECK DATABASE ist fehlgeschlagen: Datenseite ist fehlerhaft (ROW MHV)
  3722.  
  3723.       Reason: CHECK DATABASE has discovered a problem in the database.
  3724.  
  3725.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3726.           object is damaged, drop that object.  Otherwise, try unloading
  3727.           and reloading the database or restore from a backup copy of the
  3728.           database.  You might also try unloading table by table to save
  3729.           as much of the database as possible.
  3730.  
  3731. 00836 ROW TNN HASHED-CLUSTEREINDEX mu▀ in einer leeren Tabelle angelegt werden
  3732.  
  3733.       Reason: A CREATE INDEX statement that specifies a clustered hashed index
  3734.           must be given after the CREATE TABLE statement and before any
  3735.           data is inserted into the table.
  3736.  
  3737.       Remedy: Unload the data.    Delete the data.  Create the clustered hashed
  3738.           index.  Reload the data.
  3739.  
  3740. 00837 ROW IVF NUR INTERN VERWENDET: Ungⁿltige Funktion
  3741.  
  3742.       Reason: This is error is only used internally by the SQLBase system.
  3743.  
  3744.       Remedy: None.  This error code should never occur.  If you get this
  3745.           error, contact your local Gupta Technologies certified
  3746.           technical support center.
  3747.  
  3748. 00838 ROW RTL Anfangszeilengr÷▀e ist zu gro▀
  3749.  
  3750.       Reason: Row attempting to be insert is too large for the system.    The
  3751.           number of columns and width of each column exceeds the maximum
  3752.           size available.  The row length for a table cannot exceed the
  3753.           page size of the table space ih which that table resides (or is
  3754.           to reside).
  3755.  
  3756.       Remedy: Reevaluate the structure of table and determine if its possible
  3757.           to create multiple tables for the single table currently being
  3758.           used.
  3759.  
  3760. 00839 ROW CNL Schwerer SQLBase-Systemfehler (ROW CNL)
  3761.  
  3762.       Reason: This is a Fatal Error.
  3763.  
  3764.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3765.           If a FAIL.SQL file is available, then save it.  Attempt to
  3766.           reproduce the problem via a SQL script, scenario, or using the
  3767.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3768.           Contact your local Gupta certified technical support center.
  3769.  
  3770. 00840 ROW CND Schwerer SQLBase-Systemfehler (ROW CND)
  3771.  
  3772.       Reason: This is a Fatal Error.
  3773.  
  3774.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3775.           If a FAIL.SQL file is available, then save it.  Attempt to
  3776.           reproduce the problem via a SQL script, scenario, or using the
  3777.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3778.           Contact your local Gupta certified technical support center.
  3779.  
  3780. 00841 ROW CNU Schwerer SQLBase-Systemfehler (ROW CNU)
  3781.  
  3782.       Reason: This is a Fatal Error.
  3783.  
  3784.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3785.           If a FAIL.SQL file is available, then save it.  Attempt to
  3786.           reproduce the problem via a SQL script, scenario, or using the
  3787.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3788.           Contact your local Gupta certified technical support center.
  3789.  
  3790. 00842 ROW PPN Schwerer SQLBase-Systemfehler (ROW PPN)
  3791.  
  3792.       Reason: This is a Fatal Error.
  3793.  
  3794.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  3795.           If a FAIL.SQL file is available, then save it.  Attempt to
  3796.           reproduce the problem via a SQL script, scenario, or using the
  3797.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  3798.           Contact your local Gupta certified technical support center.
  3799.  
  3800. 00843 ROW PEB Zeilenseitenfehler: Die Seite nach ebo hat einen Bitmap-Eintrag
  3801.  
  3802.       Reason: This error is currently undocumented.
  3803.  
  3804.       Remedy: Contact your local Gupta Technologies certified technical
  3805.           support center for assistance.
  3806.  
  3807. 00844 ROW BFP Zeilenseitenfehler: Fehlerhafte Nummer der ersten freien Seite
  3808.  
  3809.       Reason: This error is currently undocumented.
  3810.  
  3811.       Remedy: Contact your local Gupta Technologies certified technical
  3812.           support center for assistance.
  3813.  
  3814. 00845 ROW BLP CHECK DATABASE ist fehlgeschlagen; Fehlerhafter Seitentap in Memoseite (ROW BLP)
  3815.  
  3816.       Reason: CHECK DATABASE has discovered a problem in the database.
  3817.  
  3818.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3819.           object is damaged, drop that object.  Otherwise, try unloading
  3820.           and reloading the database or restore from a backup copy of the
  3821.           database.  You might also try unloading table by table to save
  3822.           as much of the database as possible.
  3823.  
  3824. 00846 ROW BLS CHECK DATABASE ist fehlgeschlagen; Fehlerhafte MemodatenlΣnge (ROW BLS)
  3825.  
  3826.       Reason: CHECK DATABASE has discovered a problem in the database.
  3827.  
  3828.       Remedy: If the CHECK DATABASE displays a message saying that a database
  3829.           object is damaged, drop that object.  Otherwise, try unloading
  3830.           and reloading the database or restore from a backup copy of the
  3831.           database.  You might also try unloading table by table to save
  3832.           as much of the database as possible.
  3833.  
  3834.  
  3835. The errors documented in this section of the Error Guide are for general SQL
  3836. parsing errors.  These errors generally occur during the compile of a SQL
  3837. statement and the statement violates the syntax for that SQL command.
  3838.  
  3839. 00901 PRS CNE Befehl endet nicht korrekt
  3840.  
  3841.       Reason: The end of a SQL statement was unexpectedly determined.
  3842.  
  3843.       Remedy: Verify that the SQL statement syntax is correct and that the
  3844.           statement was not somehow truncated.
  3845.  
  3846. 00902 PRS MFC FROM-Klausel fehlt
  3847.  
  3848.       Reason: The FROM clause is missing from a SELECT statement.
  3849.  
  3850.       Remedy: Verify that the FROM clause exists and that it is correctly
  3851.           entered after the select list, for example:
  3852.  
  3853.            SELECT columnnames FROM tablename ...
  3854.  
  3855. 00903 PRS ICC Ungⁿltiger CREATE-Befehl
  3856.  
  3857.       Reason: The next keyword immediately following a CREATE verb is
  3858.           invalid.
  3859.  
  3860.       Remedy: Verify that the keyword immediately following the CREATE verb
  3861.           keyword is either TABLE, INDEX, UNIQUE (index), SYNONYM,
  3862.           PUBLIC (synonym), or VIEW.
  3863.  
  3864. 00904 PRS MLP Linke Klammer fehlt
  3865.  
  3866.       Reason: A missing left parenthesis has been determined.
  3867.  
  3868.       Remedy: Check the syntax of the SQL statement to determine the missing
  3869.           left parenthesis.
  3870.  
  3871. 00905 PRS MRP Rechte Klammer fehlt
  3872.  
  3873.       Reason: A missing right parenthesis has been determined.
  3874.  
  3875.       Remedy: Check the syntax of the SQL statement to determine the missing
  3876.           right parenthesis.
  3877.  
  3878. 00906 PRS ITN Ungⁿltiger Tabellenname
  3879.  
  3880.       Reason: The table name is invalid.
  3881.  
  3882.       Remedy: Verify that the specified table name is valid.
  3883.  
  3884. 00907 PRS ICN Ungⁿltiger Spaltenname
  3885.  
  3886.       Reason: The column name is invalid.
  3887.  
  3888.       Remedy: Verify that the specified column names are valid.
  3889.  
  3890. 00908 PRS ICS Ungⁿltige CHAR-oder VARCHAR-Gr÷▀e
  3891.  
  3892.       Reason: Attempting to create or modify a column and the specified size
  3893.           exceeds 254 characters.
  3894.  
  3895.       Remedy: Modify statement so CHAR or VARCHAR size does not exceed 254
  3896.           characters.
  3897.  
  3898. 00909 PRS INC Ungⁿltiges Zeichen
  3899.  
  3900.       Reason: The SQL parser has determined an invalid character while
  3901.           searching for quoted strings, numbers, keywords, and
  3902.           identifiers.
  3903.  
  3904.       Remedy: Verify that the SQL statement is correctly stated and that no
  3905.           invalid characters are present.
  3906.  
  3907. 00910 PRS ITL Bezeichner zu lang
  3908.  
  3909.       Reason: An identifier exceeds 18 characters.
  3910.  
  3911.       Remedy: Correct the identifier that exceeds 18 characters.
  3912.  
  3913. 00911 PRS MIK INTO-Schlⁿsselwort fehlt
  3914.  
  3915.       Reason: INTO keyword is missing from an INSERT statement.
  3916.  
  3917.       Remedy: Correct SQL statement.  All INSERT statements begin
  3918.           "INSERT INTO tablename...".
  3919.  
  3920. 00912 PRS MVK VALUES-Schlⁿsselwort fehlt
  3921.  
  3922.       Reason: VALUES keyword is missing from an INSERT statement.
  3923.  
  3924.       Remedy: Correct SQL statement.
  3925.  
  3926. 00913 PRS NEV Die Anzahl der INSERT-Werte entspricht nicht der Anzahl der Zielspalten
  3927.  
  3928.       Reason: The number of columns specified in the INSERT statement does
  3929.           not match the number of values specified in the VALUES clause.
  3930.  
  3931.       Remedy: Correct the SQL statement.  The number of columns exceeds the
  3932.           number of values.  Specify one and only one value for each of
  3933.           the specified object columns.
  3934.  
  3935. 00914 PRS IBV Ungⁿltige Bindevariable
  3936.  
  3937.       Reason: A bind variable, identified because it follows a colon, has
  3938.           been determined as invalid.
  3939.  
  3940.       Remedy: Check that each bind variable is either a number or valid
  3941.           identifier.
  3942.  
  3943. 00915 PRS IVC Ungⁿltige Konstante
  3944.  
  3945.       Reason: An invalid constant has been determined.
  3946.  
  3947.       Remedy: Correct SQL statement.
  3948.  
  3949. 00916 PRS QNE Angegebene Zeichenkette endet nicht korrekt
  3950.  
  3951.       Reason: A quoted string has not been properly terminated.
  3952.  
  3953.       Remedy: Correct SQL statement.
  3954.  
  3955. 00917 PRS ISC Ungⁿltiger SQL-Befehl
  3956.  
  3957.       Reason: The SQL statement verb is invalid.
  3958.  
  3959.       Remedy: Verify that the first keyword is a valid SQL statement verb.
  3960.  
  3961. 00918 PRS TMV Anzahl der INSERT-Werte ⁿbersteigt die Anzahl der Zielspalten
  3962.  
  3963.       Reason: The number of columns specified in the INSERT statement does
  3964.           not match the number of values specified in the VALUES clause.
  3965.  
  3966.       Remedy: Correct the SQL statement.  The number of values exceeds the
  3967.           number of columns.  Specify one and only one value for each of
  3968.           the specified object columns.
  3969.  
  3970. 00919 PRS QTL Angegebene Zeichenkette zu lang
  3971.  
  3972.       Reason: A quoted string is longer than 254 characters.
  3973.  
  3974.       Remedy: Correct SQL statement.
  3975.  
  3976. 00920 PRS MES Gleichheitszeichen fehlt
  3977.  
  3978.       Reason: An equal sign is missing in an UPDATE statement.
  3979.  
  3980.       Remedy: Correct UPDATE statement.  The SET clause within an UPDATE
  3981.           statement has the general form of
  3982.            SET column-name = expression
  3983.  
  3984. 00921 PRS IVO Ungⁿltiger Operator
  3985.  
  3986.       Reason: An invalid operator has been determined.    The SQL parser was
  3987.           attempting to parse a boolean factor when it discovered this
  3988.           invalid operator.
  3989.  
  3990.       Remedy: Correct SQL statement.
  3991.  
  3992. 00922 PRS MCP Klammer oder Komma fehlt
  3993.  
  3994.       Reason: A missing comma or parenthesis has been determined in an INSERT
  3995.           statement.
  3996.  
  3997.       Remedy: Correct SQL statement.
  3998.  
  3999. 00923 PRS MSE SET-Schlⁿsselwort fehlt
  4000.  
  4001.       Reason: A SET keyword is missing in an UPDATE statement.
  4002.  
  4003.       Remedy: Correct UPDATE statement.  The SET clause within an UPDATE
  4004.           statement has the general form of
  4005.            SET column-name = expression
  4006.  
  4007. 00924 PRS CST Spalte wurde mehr als einmal bestimmt
  4008.  
  4009.       Reason: A SQL statement is attempting to create a table or view, perform
  4010.           an insert or update, rename a column, or use the ORDER BY or
  4011.           GROUP BY clause and the same column name is specified for two
  4012.           (or more) columns.
  4013.  
  4014.       Remedy: Correct the SQL statement to specify unique names for each of
  4015.           the columns.
  4016.  
  4017. 00925 PRS MFK FROM-Schlⁿsselwort fehlt
  4018.  
  4019.       Reason: A SQL statement is attempting to revoke user privileges FROM
  4020.           a specific table, revoke connect, DBA, or resource authority
  4021.           FROM users, or is deleting rows FROM a specified table and has
  4022.           failed to properly specify the FROM keyword.
  4023.  
  4024.       Remedy: Correct SQL statement.
  4025.  
  4026. 00926 PRS MNK NULL-Schlⁿsselwort fehlt
  4027.  
  4028.       Reason: The keyword NULL has been determined to be missing.
  4029.  
  4030.       Remedy: Correct SQL statement.
  4031.  
  4032. 00927 PRS MOK ON-Schlⁿsselwort fehlt
  4033.  
  4034.       Reason: A SQL statement is attempting to grant user privileges ON a
  4035.           table, create an index ON a table, or comment ON a table or
  4036.           column and has failed to properly specify the ON keyword.
  4037.  
  4038.       Remedy: Correct SQL statement.
  4039.  
  4040. 00928 PRS MBK BY-Schlⁿsselwort fehlt
  4041.  
  4042.       Reason: A SQL statement is using the ORDER BY clause, GROUP BY clause,
  4043.           or granting connect authority to users IDENTIFIED BY passwords
  4044.           and the BY keyword was not properly specified.
  4045.  
  4046.       Remedy: Correct SQL statement.
  4047.  
  4048. 00929 PRS IDC Ungⁿltiger DROP-Befehl
  4049.  
  4050.       Reason: The next keyword immediately following a DROP verb is invalid.
  4051.  
  4052.       Remedy: Verify that the keyword immediately following the DROP verb
  4053.           keyword is either TABLE, SYNONYM, PUBLIC (synonym), VIEW or
  4054.           INDEX.
  4055.  
  4056. 00930 PRS IIN Ungⁿltiger Indexname
  4057.  
  4058.       Reason: The index name specified in a CREATE [UNIQUE] INDEX, DROP
  4059.           INDEX, or UPDATE STATISTICS is invalid.
  4060.  
  4061.       Remedy: Correct SQL statement.  An index name can be a qualified or
  4062.           unqualified long identifier.  The qualified form is an
  4063.           userid followed by a period and a long identifier.  An
  4064.           unqualified index name in a SQL statement is implicitly
  4065.           qualified by the userid of the user who issued the statement.
  4066.  
  4067. 00931 PRS IVD Ungⁿltige(s) Datum und/oder Zeit
  4068.  
  4069.       Reason: An invalid date was determined in the SQL statement.
  4070.  
  4071.       Remedy: Correct SQL statement.
  4072.  
  4073. 00932 PRS TMC Zuviele Spalten bestimmt
  4074.  
  4075.       Reason: Attempting to execute a CREATE TABLE, CREATE VIEW, or ALTER
  4076.           TABLE to add columns and the number of columns exceeds the
  4077.           maximum (254) number of columns allowed for any table or view.
  4078.  
  4079.       Remedy: Modify the SQL statement so it does not exceed the maximum (254)
  4080.           number of columns allowed.
  4081.  
  4082. 00933 PRS CRI NICHT VERWENDET
  4083.  
  4084.       Reason: This is error code is currently not used by the SQLBase system.
  4085.  
  4086.       Remedy: None.  This error code should never occur.  If you get this
  4087.           error, contact your local Gupta Technologies certified
  4088.           technical support center.
  4089.  
  4090. 00934 PRS IVN Ungⁿltige Zahl
  4091.  
  4092.       Reason: The database is attempting to parse a number in a SQL statement
  4093.           and is finding the number to be invalid.
  4094.  
  4095.       Remedy: Correct SQL statement.
  4096.  
  4097. 00935 PRS MCK NICHT VERWENDET
  4098.  
  4099.       Reason: This is error code is currently not used by the SQLBase system.
  4100.  
  4101.       Remedy: None.  This error code should never occur.  If you get this
  4102.           error, contact your local Gupta Technologies certified
  4103.           technical support center.
  4104.  
  4105. 00936 PRS IAO Ungⁿltige ─nderungsoption
  4106.  
  4107.       Reason: The keyword expected immediately after the ALTER verb keyword
  4108.           is expected to be TABLE.
  4109.  
  4110.       Remedy: Correct ALTER SQL statement.  The proper syntax should begin:
  4111.            ALTER TABLE tablename ...
  4112.  
  4113. 00937 PRS SFN Set-Funktion ist hier nicht erlaubt
  4114.  
  4115.       Reason: A set function was found that is not allowed in conjuction with
  4116.           the current nesting level and various set function rules.
  4117.  
  4118.       Remedy: Correct SQL statement.
  4119.  
  4120. 00938 PRS HWG NICHT VERWENDET
  4121.  
  4122.       Reason: This is error code is currently not used by the SQLBase system.
  4123.  
  4124.       Remedy: None.  This error code should never occur.  If you get this
  4125.           error, contact your local Gupta Technologies certified
  4126.           technical support center.
  4127.  
  4128. 00939 PRS IAS Ungⁿltiger Stern
  4129.  
  4130.       Reason: While parsing a SELECT statement the system has determined an
  4131.           invalid asterisk.
  4132.  
  4133.       Remedy: Correct SQL statement.
  4134.  
  4135. 00940 PRS ITA Ungⁿltige <Tabelle>.*
  4136.  
  4137.       Reason: An invalid tablename.* has been determined.
  4138.  
  4139.       Remedy: Correct SQL statement.
  4140.  
  4141. 00941 PRS MAK AND-Schlⁿsselwort fehlt
  4142.  
  4143.       Reason: The AND keyword is missing from a BETWEEN predicate clause.
  4144.  
  4145.       Remedy: Correct SQL statement.  The BETWEEN predicate clause has the
  4146.           general syntax of:
  4147.            expression [NOT] BETWEEN expression AND expression
  4148.  
  4149. 00942 PRS AWC Stern ist nur mit COUNT erlaubt
  4150.  
  4151.       Reason: An asterisk has been found in a function and the function is
  4152.           not the COUNT(*) function.
  4153.  
  4154.       Remedy: Correct SQL statement.
  4155.  
  4156. 00943 PRS MTK TO-Schlⁿsselwort fehlt
  4157.  
  4158.       Reason: Attempting to GRANT authority TO a user or attempting to ALTER
  4159.           an old password TO a new password and the TO keyword is missing.
  4160.  
  4161.       Remedy: Correct SQL statement.
  4162.  
  4163. 00944 PRS UST Doppelte Benutzernamen in Liste gefunden
  4164.  
  4165.       Reason: While parsing the list a users, the same user name has been
  4166.           found to appear more than once.
  4167.  
  4168.       Remedy: Correct SQL statement.
  4169.  
  4170. 00945 PRS IPW Ungⁿltiges Pa▀wort
  4171.  
  4172.       Reason: Attempting to grant connect authority to a user or attempting
  4173.           to change a password and the one of the specified passwords has
  4174.           been found to be invalid.
  4175.  
  4176.       Remedy: Correct SQL statement.
  4177.  
  4178. 00946 PRS MUP NICHT VERWENDET
  4179.  
  4180.       Reason: This is error code is currently not used by the SQLBase system.
  4181.  
  4182.       Remedy: None.  This error code should never occur.  If you get this
  4183.           error, contact your local Gupta Technologies certified
  4184.           technical support center.
  4185.  
  4186. 00947 PRS IUN Ungⁿltiger Benutzername
  4187.  
  4188.       Reason: Attempting to grant connect authority to any number of users and
  4189.           one of the specified usernames has been found to be invalid.
  4190.  
  4191.       Remedy: Correct SQL statement.
  4192.  
  4193. 00948 PRS IPR Ungⁿltige Rechte wurden bestimmt
  4194.  
  4195.       Reason: Attempting to grant table privileges and one of the specified
  4196.           privileges is invalid.
  4197.  
  4198.       Remedy: Correct SQL statement.  Valid privileges are ALL, SELECT,
  4199.           INSERT, DELETE, INDEX, ALTER, or UPDATE columname.
  4200.  
  4201. 00949 PRS MID IDENTIFIED-Schlⁿsselwort fehlt
  4202.  
  4203.       Reason: Attempting to grant connect authority to a user or users and
  4204.           the keyword IDENTIFIED is missing or misspelled.
  4205.  
  4206.       Remedy: Correct SQL statement.  The grant connect authority syntax is:
  4207.            GRANT CONNECT TO authorization-id IDENTIFIED BY password
  4208.  
  4209. 00950 PRS MIS IS-Schlⁿsselwort fehlt
  4210.  
  4211.       Reason: Attempting a COMMENT ON statement and the keyword IS is missing
  4212.           or misspelled.
  4213.  
  4214.       Remedy: Correct SQL statement.  The COMMENT ON syntax is:
  4215.            COMMENT ON TABLE tablename IS string-constant
  4216.             or
  4217.            COMMENT ON COLUMN columnname IS string-constant
  4218.  
  4219. 00951 PRS COM Ungⁿltiger COMMENT-Befehl
  4220.  
  4221.       Reason: Attempting a COMMENT ON statement and the COMMENT ON TABLE
  4222.           keywords are not immediately followed by a table name or view
  4223.           name, or the COMMENT ON COLUMN is not immediately followed by a
  4224.           column name.
  4225.  
  4226.       Remedy: Correct SQL statement.
  4227.  
  4228. 00952 PRS MDK Datentyp-Schlⁿsselwort fehlt
  4229.  
  4230.       Reason: Attempting a CREATE TABLE or ALTER TABLE to add or modify a
  4231.           column and the data type specified is misspelled or missing.
  4232.  
  4233.       Remedy: Correct SQL statement.  Check valid data types in the SQL
  4234.           Language Reference Guide.
  4235.  
  4236. 00953 PRS MTN Tabellenname fehlt
  4237.  
  4238.       Reason: Attempting a COMMENT ON COLUMN tablename.columnname or
  4239.           viewname.columnname and the tablename or viewname is missing.
  4240.  
  4241.       Remedy: Correct SQL statement.
  4242.  
  4243. 00954 PRS GBE GROUP BY unter EXISTS
  4244.  
  4245.       Reason: Attempting a GROUP BY clause under an EXISTS predicate clause.
  4246.  
  4247.       Remedy: Correct SQL statement.  The EXISTS predicate tests for the
  4248.           existence of certain rows in a table.  The testing of existence
  4249.           cannot be grouped.
  4250.  
  4251. 00955 PRS MSC Die SELECT-Klausel der Unterabfrage bestimmt mehrere Spalten
  4252.  
  4253.       Reason: In the context in which it was used in the SQL statement, the
  4254.           subquery can have only one column specified in its SELECT clause
  4255.           because this is not an EXISTS subselect and because it uses
  4256.           multiple columns.
  4257.  
  4258.       Remedy: Correct the syntax of the SQL statement.    Refer to the SQL
  4259.           Language Reference Manual for information about restrictions on
  4260.           the syntax for subqueries.
  4261.  
  4262. 00956 PRS 056 NICHT VERWENDET
  4263.  
  4264.       Reason: This is error code is currently not used by the SQLBase system.
  4265.  
  4266.       Remedy: None.  This error code should never occur.  If you get this
  4267.           error, contact your local Gupta Technologies certified
  4268.           technical support center.
  4269.  
  4270. 00957 PRS IUI Ungⁿltige UNION
  4271.  
  4272.       Reason: Attempting a UNION of two SELECT statements and the second
  4273.           SELECT statement is missing.
  4274.  
  4275.       Remedy: Correct SQL statement.
  4276.  
  4277. 00958 PRS SSR Unterauswahl wird ben÷tigt
  4278.  
  4279.       Reason: Attempting a subselect but the first keyword after the left
  4280.           parenthesis is not a SELECT keyword.  It may be missing or just
  4281.           misspelled.
  4282.  
  4283.       Remedy: Correct SQL statement.
  4284.  
  4285. 00959 PRS IWC Ungⁿltiger Wartecode
  4286.  
  4287.       Reason: Attempting a WAIT or POST command and the event number specified
  4288.           is invalid or missing.
  4289.  
  4290.       Remedy: Correct SQL statement.  The WAIT or POST command has the general
  4291.           form of WAIT n or POST n where n is some valid integer.
  4292.  
  4293. 00960 PRS MFO FOR-Schlⁿsselwort fehlt
  4294.  
  4295.       Reason: Attempting a CREATE SYNONYM statement or a ALTER TABLE statement
  4296.           for user specified referential integrity errors and the FOR
  4297.           keyword is either missing or misspelled.
  4298.  
  4299.       Remedy: Correct SQL statement.  See the SQL Language Reference Manual
  4300.           for information on the syntax of the CREATE SYNONYM statement
  4301.           and the ALTER TABLE statement for user specified referential
  4302.           integrity errors.
  4303.  
  4304. 00961 PRS ISN Ungⁿltiger SYNONYM-Name
  4305.  
  4306.       Reason: Attempting to create or drop a synonym and the specified synonym
  4307.           name is invalid.
  4308.  
  4309.       Remedy: Correct SQL statement.  A synonym name can be any long
  4310.           identifier that designates a table or view.  A synonym name can
  4311.           be used wherever a table name or view name could be used to
  4312.           reference a table or view.
  4313.  
  4314. 00962 PRS MSL SELECT-Schlⁿsselwort fehlt
  4315.  
  4316.       Reason: Attempting a CREATE VIEW and the SELECT keyword is missing or
  4317.           misspelled.
  4318.  
  4319.       Remedy: Correct SQL statement.  The create view has a general form of:
  4320.            CREATE VIEW viewname (colnames) AS SELECT...
  4321.  
  4322. 00963 PRS BNV Bindevariabble ist in Ansicht nicht erlaubt
  4323.  
  4324.       Reason: Attempting to create a view and the select statement has bind
  4325.           variables.
  4326.  
  4327.       Remedy: Correct SQL statement.  Bind variables are not allowed in a
  4328.           select statement when creating a view.
  4329.  
  4330. 00964 PRS OBV NICHT VERWENDET
  4331.  
  4332.       Reason: This is error code is currently not used by the SQLBase system.
  4333.  
  4334.       Remedy: None.  This error code should never occur.  If you get this
  4335.           error, contact your local Gupta Technologies certified
  4336.           technical support center.
  4337.  
  4338. 00965 PRS TMP Anzahl der Pa▀w÷rter ⁿberstiegt die Anzahl der Benutzernamen
  4339.  
  4340.       Reason: The number of passwords exceed the number usernames.
  4341.  
  4342.       Remedy: Correct SQL statement.  The number of usernames and passwords
  4343.           must be equal.
  4344.  
  4345. 00966 PRS DIN Begrenzender Bezeichner nicht beendet
  4346.  
  4347.       Reason: A delimited string is not properly ended.
  4348.  
  4349.       Remedy: Correct SQL statement.
  4350.  
  4351. 00967 PRS DIL Begrenzender Bezeichner zu lang
  4352.  
  4353.       Reason: A delimited string is too long.
  4354.  
  4355.       Remedy: Correct SQL statement.
  4356.  
  4357. 00968 PRS TMO Zuviele Operanden
  4358.  
  4359.       Reason: Too many operands have been found in an expression.
  4360.  
  4361.       Remedy: Correct SQL statement.
  4362.  
  4363. 00969 PRS NEO Nicht genⁿgend Operanden
  4364.  
  4365.       Reason: Not enough operands have been found in an expression.
  4366.  
  4367.       Remedy: Correct SQL statement.
  4368.  
  4369. 00970 PRS CCN CURRENT OF-Cursor nicht erlaubt
  4370.  
  4371.       Reason: Attempting to use a CURRENT OF cursorname clause in a WHERE
  4372.           clause and it is not allowed.
  4373.  
  4374.       Remedy: Correct SQL statement.  The CURRENT OF cursorname clause is
  4375.           only allowed in a DELETE and an UPDATE statement.
  4376.  
  4377. 00971 PRS MOF OF-Schlⁿsselwort fehlt
  4378.  
  4379.       Reason: Attempting a CURRENT OF cursorname clause and the OF keyword
  4380.           immediately following the CURRENT keyword is either missing or
  4381.           misspelled.  Or, attempting an ALTER TABLE statement for
  4382.           referential integrity user errors and the mandatory OF keyword
  4383.           is either missing or misspelled.
  4384.  
  4385.       Remedy: Correct SQL statement.
  4386.  
  4387. 00972 PRS ICU Ungⁿltiger CURRENT OF-Cursorname
  4388.  
  4389.       Reason: Attempting an UPDATE or DELETE with a CURRENT OF cursorname
  4390.           clause  and the cursor name is invalid.
  4391.  
  4392.       Remedy: Correct SQL statement.
  4393.  
  4394. 00973 PRS OCU ORDER BY ist mit mit UNION in Spalte nicht erlaubt
  4395.  
  4396.       Reason: Attempting an ORDER BY clause in a UNION and the order by column
  4397.           has been specified by column name rather than by integer.
  4398.  
  4399.       Remedy: Correct SQL statement.  An ORDER BY clause may be used to sort
  4400.           the final result of rows from the UNION of two (or more) tables.
  4401.           When an ORDER BY clause is used with a UNION, you must use an
  4402.           integer specifying the sequence number of the column in the
  4403.           select list.  Refer to the section on the SELECT statement in
  4404.           the SQL Language Reference Guide for further information on the
  4405.           ORDER BY clause.
  4406.  
  4407. 00974 PRS MBR Leiste fehlt
  4408.  
  4409.       Reason: A missing bar (|) has been determined while parsing an
  4410.           expression.
  4411.  
  4412.       Remedy: Correct SQL statement.
  4413.  
  4414. 00975 PRS IPE Ungⁿltige Dezimalgenauigkeit
  4415.  
  4416.       Reason: The precision for the data type of DECIMAL or DEC is invalid.
  4417.  
  4418.       Remedy: Correct SQL statement.  Columns declared as DECIMAL or DEC are
  4419.           always associated with a particular precision and scale.
  4420.           Precision is the total number of digits and scale is the number
  4421.           of fractional decimal digits.  If precision and scale are not
  4422.           specified, SQLBase uses a default precision of 5 and a default
  4423.           scale of 0.
  4424.  
  4425. 00976 PRS ISA Ungⁿltige Dezimalskala
  4426.  
  4427.       Reason: The scale for the data type of DECIMAL or DEC is invalid.
  4428.  
  4429.       Remedy: Correct SQL statement.  Columns declared as DECIMAL or DEC are
  4430.           always associated with a particular precision and scale.
  4431.           Precision is the total number of digits and scale is the number
  4432.           of fractional decimal digits.  If precision and scale are not
  4433.           specified, SQLBase uses a default precision of 5 and a default
  4434.           scale of 0.
  4435.  
  4436. 00977 PRS MKK CHECK-Schlⁿsselwort fehlt
  4437.  
  4438.       Reason: Attempting a CREATE VIEW viewname AS select WITH CHECK OPTION
  4439.           and the keyword CHECK immediately following the keyword WITH is
  4440.           either missing or misspelled.
  4441.  
  4442.       Remedy: Correct the SQL CREATE VIEW statement.
  4443.  
  4444. 00978 PRS MSK AS-Schlⁿsselwort fehlt
  4445.  
  4446.       Reason: Attempting either a CREATE VIEW or a CREATE DBAREA and the AS
  4447.           keyword is missing or misspelled.
  4448.  
  4449.       Remedy: Correct SQL statement.
  4450.  
  4451. 00979 PRS PSR Pluszeichen wird fⁿr Outer join ben÷tigt
  4452.  
  4453.       Reason: Attempting to use the outer join syntax in a select statement
  4454.           and a plus sign (+) should immediately follow a column name.
  4455.  
  4456.       Remedy: Correct SQL statement.
  4457.  
  4458. 00980 PRS IOJ Unerlaubte Outer join-Spezifikation
  4459.  
  4460.       Reason: Attempting an outer join in a select statement there are not
  4461.           exactly two operands, or not both column operands, or there is
  4462.           not a relational operator causing this to be an illegal outer
  4463.           join specification.
  4464.  
  4465.       Remedy: Correct SQL statement.
  4466.  
  4467. 00981 PRS OOJ NICHT VERWENDET
  4468.  
  4469.       Reason: This is error code is currently not used by the SQLBase system.
  4470.  
  4471.       Remedy: None.  This error code should never occur.  If you get this
  4472.           error, contact your local Gupta Technologies certified
  4473.           technical support center.
  4474.  
  4475. 00982 PRS CUM Benutzernamen mⁿssen fⁿr Tabelle und Ansicht ⁿbereinstimmen
  4476.  
  4477.       Reason: Trying to create an index and the user name qualifying the index
  4478.           name does not match the user name qualifying the table name.
  4479.  
  4480.       Remedy: Correct SQL statement.  Verify that the user names qualifying
  4481.           both the index name and user name are the same and not
  4482.           misspelled.  An unqualified user name defaults to the user name
  4483.           attempting to create the index.
  4484.  
  4485. 00983 PRS FNA Funktion in CREATE INDEX nicht erlaubt
  4486.  
  4487.       Reason: Attempting to create an index and the specified function is not
  4488.           allowed.
  4489.  
  4490.       Remedy: Correct SQL statement.  Not all @functions may be used to create
  4491.           an index.  For the complete list of @function allowed, see
  4492.           CREATE INDEX in the SQL Language Reference Guide.
  4493.  
  4494. 00984 PRS MBF Mu▀ eine Spaltenfunktion sein
  4495.  
  4496.       Reason: Attempting to create an index and using a function that is not
  4497.           being applied to a column.
  4498.  
  4499.       Remedy: Correct SQL statement.  An index can be created for a set of
  4500.           column values resulting from applying an @function to the
  4501.           column.  Functions in a create index cannot be nested.  The
  4502.           @function used for the index may have only one argument that is
  4503.           a database column.  Not all @functions may be used to create an
  4504.           index.  For the complete list of @function allowed, see CREATE
  4505.           INDEX in the SQL Language Reference Guide.
  4506.  
  4507. 00985 PRS MPK PRECISION-Schlⁿsselwort fehlt
  4508.  
  4509.       Reason: Attempting to create or modify a column with a data type of
  4510.           DOUBLE PRECISION and the keyword PRECISION is missing or
  4511.           misspelled.
  4512.  
  4513.       Remedy: Correct SQL statement.
  4514.  
  4515. 00986 PRS IFN Ungⁿltige Floatzahl
  4516.  
  4517.       Reason: Trying to create or modify a column with a data type of FLOAT
  4518.           and the format has been specified but with an invalid number.
  4519.  
  4520.       Remedy: Correct SQL statement.  The data type for float can have the
  4521.           form of FLOAT or FLOAT(integer).    A FLOAT number can be an
  4522.           integer between 1 and 21 inclusive if specifying a single
  4523.           precision floating point number.    A number between 22 and 53
  4524.           inclusive means that the format is of double precision floating
  4525.           point.  If the integer is omitted, double precision is assumed.
  4526.  
  4527. 00987 PRS IVW Ungⁿltiger Ansichtname
  4528.  
  4529.       Reason: Attempting to create a view and the view name is not a valid
  4530.           long identifier.
  4531.  
  4532.       Remedy: Correct SQL statement.  A qualified or unqualified name that
  4533.           can designate a view.  The unqualified form of a view name is a
  4534.           long identifier.    The qualified form is an authorization-id
  4535.           followed by a period and a long identifier.  An unqualified
  4536.           view name in a SQL statement is implicitly qualified by the
  4537.           authorization-id of the user who issues the statement.
  4538.  
  4539. 00988 PRS PMB PCTFREE mu▀ eine Integer zwischen 0 und 99 sein
  4540.  
  4541.       Reason: Attempting a CREATE INDEX or CREATE TABLE and the specified
  4542.           PCTFREE parameter is either not a valid integer or specifies an
  4543.           integer less than zero or greater than 99 percent.
  4544.  
  4545.       Remedy: Correct SQL statement.
  4546.  
  4547. 00989 PRS 089 NICHT VERWENDET
  4548.  
  4549.       Reason: This is error code is currently not used by the SQLBase system.
  4550.  
  4551.       Remedy: None.  This error code should never occur.  If you get this
  4552.           error, contact your local Gupta Technologies certified
  4553.           technical support center.
  4554.  
  4555. 00990 PRS ILC Ungⁿltige LABEL ON-Anweisung
  4556.  
  4557.       Reason: Attempting a SQL LABEL ON statement has incorrect syntax.
  4558.  
  4559.       Remedy: Correct SQL statement.  Check the SQL Language Reference Manual
  4560.           for information on the LABEL ON statement.  Possible problems
  4561.           include an invalid keyword or identifier after the LABEL ON
  4562.           keywords, or specifying conflicting usernames, conflicting
  4563.           tablenames, or an asterisk instead of fully specifying the
  4564.           column names, or the string-constant specified after the IS
  4565.           keyword is invalid.
  4566.  
  4567. 00991 PRS ILP Ungⁿltiges LIKE-PrΣdikat
  4568.  
  4569.       Reason: Odd number of backslash (\) escape characters at the end of the
  4570.           LIKE predicate.
  4571.  
  4572.       Remedy: Correct SQL statement.
  4573.  
  4574. 00992 PRS IRE NUR INTERN VERWENDET: Ungⁿltiger Reparaturtyp
  4575.  
  4576.       Reason: This is error is only used internally by the SQLBase system.
  4577.  
  4578.       Remedy: None.  This error code should never occur.  If you get this
  4579.           error, contact your local Gupta Technologies certified
  4580.           technical support center.
  4581.  
  4582. 00993 PRS SIM Speicherpunkt-Bezeichner fehlt
  4583.  
  4584.       Reason: A long identifier is required immediately after a SAVEPOINT
  4585.           statement.
  4586.  
  4587.       Remedy: Correct the SQL statement.
  4588.  
  4589. 00994 PRS ICQ Ungⁿltige(r) Bezeichner fⁿr dieses Objekt
  4590.  
  4591.       Reason: UNIQUE, CLUSTERED, and/or HASHED have been specified on a CREATE
  4592.           statement that is NOT a CREATE INDEX statement.
  4593.  
  4594.       Remedy: Correct the SQL statement.  UNIQUE, CLUSTERED, and/or HASHED can
  4595.           only be specified on a CREATE INDEX statement.
  4596.  
  4597. 00995 PRS BSZ ungeeignete SIZE-Bestimmung
  4598.  
  4599.       Reason: Attempting a CREATE DBAREA, ALTER DBAREA, or CREATE INDEX and
  4600.           the SIZE specification is either not a valid numeric integer or
  4601.           less than zero.
  4602.  
  4603.       Remedy: Correct the SQL statement.
  4604.  
  4605. 00996 PRS SZD GR╓SSE ist nur fⁿr CLUSTERED-HASHED-Indizes erlaubt
  4606.  
  4607.       Reason: The SIZE clause is only relevant for clustered hashed indexes in
  4608.           the CREATE INDEX statement.
  4609.  
  4610.       Remedy: Correct the SQL statement.
  4611.  
  4612. 00997 PRS SZN SIZE-Klausel wird fⁿr CLUISTERED-HASHED-Indizes ben÷tigt
  4613.  
  4614.       Reason: The SIZE clause is required for CLUSTERED HASHED indexes.
  4615.  
  4616.       Remedy: Correct the SQL statement.  The SIZE clause controls the
  4617.           anticipated size of the index and is specified as a number of
  4618.           rows.  If the size is too small, overflow pages are used and
  4619.           performance degrades.  If the size is too large, but disk space
  4620.           is wasted.  This clause is only relevant and required when the
  4621.           CLUSTERED HASHED clause is specified.
  4622.  
  4623. 00998 PRS ONA ASC/DESC ist bei der Anlage von CLUSTERES-HASHED-Indizes nicht erlaubt
  4624.  
  4625.       Reason: The ASCending or DESCending options are not allowed when
  4626.           creating a HASHED CLUSTERED index.  The ASC/DESC option is only
  4627.           relevant for B-tree type indexes and not hashed indexes.
  4628.  
  4629.       Remedy: Correct the SQL CREATE INDEX statement.
  4630.  
  4631. 00999 PRS NCH HASHED-Indizes mⁿssen CLUSTERED-Indizes sein
  4632.  
  4633.       Reason: A HASHED index must also be defined as CLUSTERED.
  4634.  
  4635.       Remedy: Correct the SQL CREATE INDEX statement.
  4636.  
  4637. 01000 PRS MOP OPTION-Schlⁿsselwort fehlt
  4638.  
  4639.       Reason: Attempting a CREATE VIEW viewname AS select WITH CHECK OPTION
  4640.           and the keyword OPTION immediately following the keyword CHECK
  4641.           is either missing or misspelled.
  4642.  
  4643.       Remedy: Correct the SQL CREATE VIEW statement.
  4644.  
  4645.  
  4646.  
  4647. The errors documented in this section of the Error Guide are for errors
  4648. relating to the edit of nested SQL functions.
  4649.  
  4650. 01001 EDT NSG Verschachtelte Set-Funktion ohne GROUP BY
  4651.  
  4652.       Reason: The SQL statement contains a nested set function in the SELECT
  4653.           clause, but no GROUP BY clause.
  4654.  
  4655.       Remedy: Correct the SQL statement.  Refer to the SQL Language Reference
  4656.           Manual for information about the use of GROUP BY clauses in SQL
  4657.           statements.
  4658.  
  4659. 01002 EDT NGC Keine GROUP BY-Spalte
  4660.  
  4661.       Reason: A column in the SELECT column list that is not an aggregate set
  4662.           function is not in the GROUP BY list.  Or, a column in the
  4663.           SELECT column list that is an aggregate set function that yields
  4664.           a single value is in the GROUP BY list and cannot be grouped.
  4665.  
  4666.       Remedy: Correct the SQL statement.  If the column by which a grouping
  4667.           occurs is an expression (but not an aggregate function), you
  4668.           must specify a number that indicates its relative position in
  4669.           the SELECT column list.  Aggregate functions, since they yield
  4670.           one value, cannot be GROUP BY columns.  If using a GROUP BY
  4671.           clause, each column in the SELECT list must be listed in the
  4672.           GROUP BY clause or each column in the SELECT list must be used
  4673.           in an aggregate set function that yields a single value.
  4674.  
  4675. 01003 EDT NSS Keine Einzelwert-Set-Funktion
  4676.  
  4677.       Reason: A SELECT statement with no GROUP BY clause contains a column
  4678.           name and a function in the select list clause or a column name
  4679.           is contained in the select list clause but not in the GROUP BY
  4680.           clause.
  4681.  
  4682.       Remedy: Correct the SQL SELECT statement.
  4683.  
  4684. 01004 EDT ICN Integer in ORDER BY/GROUP BY identifiziert keine gⁿltige Spalte
  4685.  
  4686.       Reason: A GROUP BY or ORDER BY clause specifies the columns to GROUP BY
  4687.           or ORDER BY by number.  The number specified does not correspond
  4688.           to a column in the select list.  The ORDER BY or GROUP BY clause
  4689.           in the SQL statement contains a column number that is either
  4690.           less than one, or greater than the number of columns of the
  4691.           result table (the number of items in the SELECT clause).
  4692.  
  4693.       Remedy: Correct the syntax of the ORDER BY or GROUP BY clause such that
  4694.           each column identifier properly denotes a column of the result
  4695.           table.
  4696.  
  4697. 01005 EDT VCU Ansichtspalte nicht aktualisierbar
  4698.  
  4699.       Reason: Attempting to INSERT or UPDATE via a view and a column has been
  4700.           determined to be non-updatable.
  4701.  
  4702.       Remedy: Correct the SQL INSERT or UPDATE statement.  See CREATE VIEW in
  4703.           the SQL Language Reference Manual for a complete explanation of
  4704.           what can make a column non-updatable.
  4705.  
  4706. 01006 EDT MNE Operanden der UNION-Anweisung haben nicht die gleiche Spaltenanzahl
  4707.  
  4708.       Reason: The operands of a UNION or UNION ALL must have the same number
  4709.           of columns.
  4710.  
  4711.       Remedy: Correct the SQL statement so that there are exactly the same
  4712.           number of columns in each operand.
  4713.  
  4714. 01007 EDT MTE Nichtⁿbereinstimmung in Typen der SELECT-Ausdrⁿcke
  4715.  
  4716.       Reason: Attempting a SQL SELECT statement with a UNION and corresponding
  4717.           columns of the two SELECTs have different data types, different
  4718.           lengths (if not numeric), or the NOT NULL attributes of two
  4719.           fields are not consistent.
  4720.  
  4721.       Remedy: Correct the SQL SELECT statement so that each column of the
  4722.           SELECT statements have the same data type with the same lengths
  4723.           and so that each column defined as NOT NULL in one SELECT
  4724.           statement corresponds to another NOT NULL column in the other
  4725.           SELECT statement.
  4726.  
  4727. 01008 EDT LNA Memo ist hier nicht erlaubt
  4728.  
  4729.       Reason: Attempting to order or sort a LONG VARCHAR column.
  4730.  
  4731.       Remedy: Correct the SQL statement.  LONG VARCHAR columns cannot be
  4732.           ordered or sorted.
  4733.  
  4734. 01009 EDT DKL DISTINCT-Schlⁿssel zu lang
  4735.  
  4736.       Reason: The resulting DISTINCT key is too long.  The DISTINCT key length
  4737.           is computed by summing the maximum length plus one of each
  4738.           column forming the key.
  4739.  
  4740.       Remedy: Modify the SQL statement so that the DISTINCT does not exceed
  4741.           the maximum length of 255 characters.  Columns used in the
  4742.           DISTINCT key length computation include not only columns in the
  4743.           SELECT list but also columns mentioned in the ORDER BY clause
  4744.           that are not present in the SELECT list.
  4745.  
  4746. 01010 EDT MTF Objekt (Tabelle/Ansicht) von INSERT oder UPDATE auch in FROM-Klausel
  4747.  
  4748.       Reason: A SQL INSERT, UPDATE, or DELETE statement is illegally
  4749.           self-referencing.  The object table being modified is also the
  4750.           source table in the FROM clause.
  4751.  
  4752.       Remedy: Correct the SQL statement.
  4753.  
  4754. 01011 EDT TMS Zuviele Felder werden selektiert
  4755.  
  4756.       Reason: A SELECT statement is attempting to select too many items.
  4757.           There is an upper limit of 255 on the number of items that
  4758.           can be selected in a SELECT statement.
  4759.  
  4760.       Remedy: Reduce the number of items being selected in the SELECT
  4761.           statement.
  4762.  
  4763.  
  4764. The errors documented in this section of the Error Guide are for general SQL
  4765. security type errors.
  4766.  
  4767. 01101 SEC UAE Benutzer existiert bereits
  4768.  
  4769.       Reason: Attempting to grant connect authority to a new user and the
  4770.           user name already exists.
  4771.  
  4772.       Remedy: Correct the SQL statement.  Verify the existence of established
  4773.           users by looking at the SYSUSERAUTH table.
  4774.  
  4775. 01102 SEC SVI Sicherheitsversto▀
  4776.  
  4777.       Reason: Attempting to access a table when authority has not been
  4778.           granted to use the specified table.
  4779.  
  4780.       Remedy: Obtain proper authority before attempting to access the
  4781.           specified table.
  4782.  
  4783. 01103 SEC NGA Kein Vergaberecht
  4784.  
  4785.       Reason: Attempting to grant DBA or resource authority when the user
  4786.           does not have these authority to perform this grants.
  4787.  
  4788.       Remedy: The only SYSADM cannot perform the granting of DBA or resource
  4789.           authority.
  4790.  
  4791. 01104 SEC UNE Benutzer existiert nicht
  4792.  
  4793.       Reason: Attempting to alter a user's password or grant DBA or resource
  4794.           authority to a user that does not exist.
  4795.  
  4796.       Remedy: Verify that the user exists and that the user name is not
  4797.           misspelled.  Verify that the user exists by looking at the
  4798.           SYSUSERAUTH table.
  4799.  
  4800. 01105 SEC UAD Benutzer hat bereits DBA-Rechte
  4801.  
  4802.       Reason: Attempting to grant DBA authority to a user and the user
  4803.           already has DBA authority.
  4804.  
  4805.       Remedy: None.  No need to grant DBA authority to a user that already
  4806.           has DBA authority.
  4807.  
  4808. 01106 SEC UAR Benutzer hat bereits RESOURCE-Rechte
  4809.  
  4810.       Reason: Attempting to grant resource authority to a user and the user
  4811.           already has resource authority.
  4812.  
  4813.       Remedy: None.  No need to grant resource authority to a user that
  4814.           already has resource authority.
  4815.  
  4816. 01107 SEC DCU DBA-Rechte werden ben÷tigt, um eine Tabelle/Ansicht fⁿr einen anderen Benutzer anzulegen
  4817.  
  4818.       Reason: Attempting to create a table or view for another user and the
  4819.           user attempting this operation does not have DBA authority.
  4820.  
  4821.       Remedy: None.  A user cannot create a table or view for another user
  4822.           unless they have DBA authority to do so.
  4823.  
  4824. 01108 SEC IOP Ungⁿltiges oder altes Pa▀wort
  4825.  
  4826.       Reason: Attempting an ALTER PASSWORD and the old password specified is
  4827.           not the current old password.
  4828.  
  4829.       Remedy: Correct old password.  You must know the correct old password in
  4830.           order to modify the password.
  4831.  
  4832.  
  4833. The errors documented in this section of the Error Guide are for general
  4834. Application Interface Programming errors.
  4835.  
  4836. 01201 API ICS Ungⁿltige Spalte wurde bestimmt
  4837.  
  4838.       Reason: An invalid column number has specified in an sqlssb, sqldes,
  4839.           sqlfqn, sqlgfi, sqllab, or sqlgls function call.    Compare the
  4840.           column number specified with the SELECT statement.  Note that
  4841.           column numbers are relative to the position of the columns in
  4842.           the select list clause and are not in anyway related to the
  4843.           position in the CREATE TABLE statement.  For example, if a table
  4844.           is created with the following statement:
  4845.            CREATE TABLE X (A CHAR(5), B CHAR(5), C CHAR(5))
  4846.           and a select is compiled like:
  4847.            SELECT C FROM X
  4848.           then one set select buffer call would be needed to set up a
  4849.           buffer using a column number of 1 for the column named C.
  4850.  
  4851.       Remedy: Modify function call.
  4852.  
  4853. 01202 API MOO Schwerer SQLBase-Systemfehler (API MOO)
  4854.  
  4855.       Reason: This is a Fatal Error.  But, it may have been caused because
  4856.           the client workstation application is running under an
  4857.           environment like OS/2 and it used multiple threads that
  4858.           submitted multiple API requests when the API is a single
  4859.           threaded operation.  That is, the API expects that a message is
  4860.           sent and an answer received before another message is sent.
  4861.           This error may have occured because the application sent a
  4862.           second message to the database computer without receiving an
  4863.           answer from the first message.
  4864.  
  4865.       Remedy: Stop all database activity and run a CHECK DATABASE.  If a
  4866.           FAIL.SQL file is found, save it.    If your application is
  4867.           submitted multiple requests to the application without waiting
  4868.           for replies from the database computer, correct this problem.
  4869.           Otherwise, contact your local Gupta Technologies certified
  4870.           technical support center.
  4871.  
  4872. 01203 API CSM Kein Speicherplatz mehr beim Client vorhanden (API CSM)
  4873.  
  4874.       Reason: The application has run out of memory at the client workstation.
  4875.  
  4876.       Remedy: Check available memory at the client workstation.  Attempt to
  4877.           make more memory available.
  4878.  
  4879. 01204 API NID NICHT VERWENDET
  4880.  
  4881.       Reason: This is error code is currently not used by the SQLBase system.
  4882.  
  4883.       Remedy: None.  This error code should never occur.  If you get this
  4884.           error, contact your local Gupta Technologies certified
  4885.           technical support center.
  4886.  
  4887. 01205 API ITL Bindevariable ist zu lang
  4888.  
  4889.       Reason: One of the bind variable names is greater than 18 characters.
  4890.  
  4891.       Remedy: Correct the bind variable name.
  4892.  
  4893. 01206 API IRW NICHT VERWENDET
  4894.  
  4895.       Reason: This is error code is currently not used by the SQLBase system.
  4896.  
  4897.       Remedy: None.  This error code should never occur.  If you get this
  4898.           error, contact your local Gupta Technologies certified
  4899.           technical support center.
  4900.  
  4901. 01207 API IID Ungⁿltiger oder fehlender Bezeichner
  4902.  
  4903.       Reason: Attempting an INSERT with an ADJUSTING CURSOR cursor name
  4904.           clause and the cursor name is too big or invalid.
  4905.  
  4906.       Remedy: Correct SQL statement.
  4907.  
  4908. 01208 API CNT NICHT VERWENDET
  4909.  
  4910.       Reason: This is error code is currently not used by the SQLBase system.
  4911.  
  4912.       Remedy: None.  This error code should never occur.  If you get this
  4913.           error, contact your local Gupta Technologies certified
  4914.           technical support center.
  4915.  
  4916. 01209 API BDR Sicherungsverzeichnis mu▀ ein vollstΣndiger Pfadname sein
  4917.  
  4918.       Reason: The specified backup directory has been found not to be a
  4919.           non-null rooted pathname.
  4920.  
  4921.       Remedy: Correct backup directory so that it is a non-null rooted
  4922.           pathname.
  4923.  
  4924. 01210 API DBN Datenbankname mu▀ spezifiziert werden
  4925.  
  4926.       Reason: The database name has not been specified attempting to perform
  4927.           an INSTALL DATABASE.
  4928.  
  4929.       Remedy: Specify a valid database name when doing a INSTALL DATABASE.
  4930.  
  4931. 01211 API BIF NUR INTERN VERWENDET: Masseneingabepuffer ist voll
  4932.  
  4933.       Reason: This is error is only used internally by the SQLBase system.
  4934.  
  4935.       Remedy: None.  This error code should never occur.  If you get this
  4936.           error, contact your local Gupta Technologies certified
  4937.           technical support center.
  4938.  
  4939. 01212 API IDV Ungⁿltige Datenbankversion
  4940.  
  4941.       Reason: The application is using mismatching versions of software or the
  4942.           database version does not correspond to the software.
  4943.  
  4944.       Remedy: Verify that the software and database are from the same release
  4945.           of SQLBase.
  4946.  
  4947. 01213 API BAC Pufferausfⁿhrungs-und Autoⁿbertragen-Modus k÷nnen nicht gleichzeitig eingeschaltet sein
  4948.  
  4949.       Reason: Cannot enable Bulk execute mode and autocommit mode
  4950.           simultaneously.
  4951.  
  4952.       Remedy: Disable autocommit mode before trying to enable bulk execute
  4953.           mode OR disable bulk execute mode before trying to enable
  4954.           autocommit mode.
  4955.  
  4956.  
  4957. The errors documented in this section of the Error Guide are for general
  4958. Message Front End error messages.
  4959.  
  4960. 01301 MFE IMO Schwerer SQLBase-Systemfehler (MFE IMO)
  4961.  
  4962.       Reason: This is a Fatal Error.
  4963.  
  4964.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  4965.           If a FAIL.SQL file is available, then save it.  Attempt to
  4966.           reproduce the problem via a SQL script, scenario, or using the
  4967.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  4968.           Contact your local Gupta certified technical support center.
  4969.  
  4970. 01302 MFE IVC Ungⁿltige Cursorzahl
  4971.  
  4972.       Reason: An invalid cursor number has been used in the current API
  4973.           function call.
  4974.  
  4975.       Remedy: Verify that the cursor being used has already been connected to
  4976.           successfully.  A frequent mistake is to call a common error
  4977.           routine in the application program when a failure occurs on the
  4978.           connect operation.  The common error routine then performs a
  4979.           error lookup using the get return code (sqlrcd) function call
  4980.           which uses a cursor number that has not yet been connected to.
  4981.  
  4982. 01303 MFE NCO nicht verbunden
  4983.  
  4984.       Reason: Attempting to use a cursor that has not been succesfully
  4985.           connected to the database.
  4986.  
  4987.       Remedy: Use a cursor only after it has been successfully connected to
  4988.           the database.
  4989.  
  4990. 01304 MFE NPA NICHT VERWENDET
  4991.  
  4992.       Reason: This is error code is currently not used by the SQLBase system.
  4993.  
  4994.       Remedy: None.  This error code should never occur.  If you get this
  4995.           error, contact your local Gupta Technologies certified
  4996.           technical support center.
  4997.  
  4998. 01305 MFE CAP NICHT VERWENDET
  4999.  
  5000.       Reason: This is error code is currently not used by the SQLBase system.
  5001.  
  5002.       Remedy: None.  This error code should never occur.  If you get this
  5003.           error, contact your local Gupta Technologies certified
  5004.           technical support center.
  5005.  
  5006. 01306 MFE CAM Kein Speicherplatz mehr beim Client vorhanden (MFE CAM)
  5007.  
  5008.       Reason: The application has run out of memory at the client workstation.
  5009.  
  5010.       Remedy: Check available memory at the client workstation.  Attempt to
  5011.           make more memory available.
  5012.  
  5013. 01307 MFE IFC Ungⁿltiger Funktionscode
  5014.  
  5015.       Reason: The function code received by the database system is not valid.
  5016.  
  5017.       Remedy: Verify that the software from Gupta Technologies does not
  5018.           consist of mismatching version numbers.  Check that your
  5019.           application is not clobbering the memory destroying the message
  5020.           sent to the database system.
  5021.  
  5022. 01308 MFE OLS Schwerer SQLBase-Systemfehler (MFE OLS)
  5023.  
  5024.       Reason: This is a Fatal Error.
  5025.  
  5026.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5027.           If a FAIL.SQL file is available, then save it.  Attempt to
  5028.           reproduce the problem via a SQL script, scenario, or using the
  5029.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5030.           Contact your local Gupta certified technical support center.
  5031.  
  5032. 01309 MFE CAO Kein Speicherplatz mehr beim Client vorhanden (MFE CAO)
  5033.  
  5034.       Reason: The application has run out of memory at the client workstation.
  5035.  
  5036.       Remedy: Check available memory at the client workstation.  Attempt to
  5037.           make more memory available.
  5038.  
  5039. 01310 MFE RWF NUR INTERN VERWENDET: Zeile pa▀t nicht in Meldungspuffer
  5040.  
  5041.       Reason: This is error is only used internally by the SQLBase system.
  5042.  
  5043.       Remedy: None.  This error code should never occur.  If you get this
  5044.           error, contact your local Gupta Technologies certified
  5045.           technical support center.
  5046.  
  5047. 01311 MFE CAN Transaktion abgebrochen
  5048.  
  5049.       Reason: The transaction was cancelled asynchronously from a different
  5050.           thread which performed a cancel operation.
  5051.  
  5052.       Remedy: Determine why the cancel operation was performed by the other
  5053.           transaction.
  5054.  
  5055. 01312 MFE TRM Transaktion beendet
  5056.  
  5057.       Reason: The transaction was terminated because the database server
  5058.           program was instructed to terminate.
  5059.  
  5060.       Remedy: Determine why the database server has been brought down.
  5061.  
  5062. 01313 MFE OOM Kein weiterer Speicherplatz mehr beim Client vorhanden (MFE OOM)
  5063.  
  5064.       Reason: The application has run out of memory at the client workstation.
  5065.  
  5066.       Remedy: Check available memory at the client workstation.  Attempt to
  5067.           make more memory available.
  5068.  
  5069. 01314 MFE BLK Fehler beim Einfⁿgen
  5070.  
  5071.       Reason: An insert error has occurred operating in Bulk Execute Mode.
  5072.           One or more rows have not been inserted because of an error
  5073.           attempting to insert the rows.
  5074.  
  5075.       Remedy: In bulk execute mode, inserts are done repeated until filling
  5076.           the bulk execute buffer and then all of the inserts are sent to
  5077.           the database simulatenously.  If this error occurs, the
  5078.           application needs to check each bulk execute return code with
  5079.           the API function call sqlber to determine which rows were not
  5080.           inserted.
  5081.  
  5082. 01315 MFE DBD Datenbank wurde heruntergefahren. Bitte trennen Sie die Verbindung
  5083.  
  5084.       Reason: Attempting to connect to the database but the database server is
  5085.           being or has been shutdown.
  5086.  
  5087.       Remedy: None.  Try connecting later when the database server is back up.
  5088.  
  5089. 01316 MFE NET Fehler beim ▄berprⁿfen des Netzwerks (back end)
  5090.  
  5091.       Reason: A network transmission problem has occurred while operating with
  5092.           NETCHECK=1.  A network transmission error was detected at the
  5093.           database server.    When the database server detects the network
  5094.           transmission problem it will try to recover from the error.  An
  5095.           informational message, "Back end sends NAK" is displayed.  For
  5096.           an unrecoverable message, an error message "Back end detects
  5097.           mismatched checksum" is displayed on the F2 screen and this
  5098.           error is return to the client workstation if the message can be
  5099.           sent to the client.
  5100.  
  5101.       Remedy: Try again to see if the error is reproducible.  If reproducible,
  5102.           try the same scenario on another client workstation computer to
  5103.           double check if the problem is reproducible regardless of client
  5104.           workstations.  If the problem is reproducible on any client
  5105.           workstation, then the network hardware problem may be at the
  5106.           database server computer.  Switching database server machines
  5107.           may also help to diagnose the problem.  Check for loose cabling.
  5108.  
  5109. 01317 MFE CIR NICHT VERWENDET
  5110.  
  5111.       Reason: This is error code is currently not used by the SQLBase system.
  5112.  
  5113.       Remedy: None.  This error code should never occur.  If you get this
  5114.           error, contact your local Gupta Technologies certified
  5115.           technical support center.
  5116.  
  5117.  
  5118. The errors documented in this section of the Error Guide are for general SQL
  5119. dictionary look up errors.
  5120.  
  5121. 01401 DLU ICN Ungⁿltiger Spaltenname
  5122.  
  5123.       Reason: An invalid column has been used in the select list.
  5124.  
  5125.       Remedy: Correct the SQL statement.
  5126.  
  5127. 01402 DLU ACR Doppeldeutiger Spaltenverweis
  5128.  
  5129.       Reason: Column is already defined.
  5130.  
  5131.       Remedy: Correct the SQL statement.
  5132.  
  5133. 01403 DLU ITN Ungⁿltiger Tabellenname
  5134.  
  5135.       Reason: An invalid table name has been determined while attempting to
  5136.           lookup the columns for the specified table.
  5137.  
  5138.       Remedy: Correct the SQL statement.
  5139.  
  5140. 01404 DLU MNV Nichtⁿbereinstimmung in Werteanzahl
  5141.  
  5142.       Reason: Attempting an INSERT with a nested subselect and the number of
  5143.           columns in the select statement does not correspond to the
  5144.           number of columns in the insert statement.
  5145.  
  5146.       Remedy: Correct the SQL statement.
  5147.  
  5148. 01405 DLU RWV NICHT VERWENDET
  5149.  
  5150.       Reason: This is error code is currently not used by the SQLBase system.
  5151.  
  5152.       Remedy: None.  This error code should never occur.  If you get this
  5153.           error, contact your local Gupta Technologies certified
  5154.           technical support center.
  5155.  
  5156. 01406 DLU VNA Ansicht ist hier nicht erlaubt
  5157.  
  5158.       Reason: A view is not allowed here.
  5159.  
  5160.       Remedy: Correct the SQL statement.
  5161.  
  5162. 01407 DLU CUV Ansicht kann nicht aktualisiert werden
  5163.  
  5164.       Reason: Attempting to update through a view that is a read only view.
  5165.  
  5166.       Remedy: Correct the SQL statement.
  5167.  
  5168. 01408 DLU RNA NICHT VERWENDET
  5169.  
  5170.       Reason: This is error code is currently not used by the SQLBase system.
  5171.  
  5172.       Remedy: None.  This error code should never occur.  If you get this
  5173.           error, contact your local Gupta Technologies certified
  5174.           technical support center.
  5175.  
  5176. 01409 DLU ARV Doppeldeutige Verwendung von ROWID mit einer Spalte
  5177.  
  5178.       Reason: Attempting to use a ROWID with a view and a table.
  5179.  
  5180.       Remedy: Correct the SQL statement.
  5181.  
  5182. 01410 DLU OOJ Nur eine Outer-join-Tabelle ist erlaubt
  5183.  
  5184.       Reason: Only one outer join is allowed per SELECT.
  5185.  
  5186.       Remedy: Correct the SQL statement.
  5187.  
  5188. 01411 DLU ICF Einfⁿgespalten mⁿssen alle Fremdschlⁿsselspalten enthalten
  5189.  
  5190.       Reason: Attempting an INSERT a row and columns participating in the
  5191.           foreign key are not among the columns being inserted.
  5192.  
  5193.       Remedy: Correct the SQL statement.  All foreign key columns must be
  5194.           inserted.
  5195.  
  5196. 01412 DLU ICP Einfⁿgespalten mⁿssen alle PrimΣrschlⁿsselspalten enthalten
  5197.  
  5198.       Reason: Attempting to INSERT a row and columns participating in the
  5199.           primary key are not among the columns being inserted.
  5200.  
  5201.       Remedy: Correct the SQL statement.  All primary key columns must be
  5202.           inserted.
  5203.  
  5204. 01413 DLU PTI ▄bergeordnete Tabelle ist nicht komplett
  5205.  
  5206.       Reason: Attempting to create a foreign key on an incomplete table.
  5207.  
  5208.       Remedy: Create the unique index on the primary key so that the table is
  5209.           considered complete before trying to create any foreign keys.
  5210.  
  5211. 01414 DLU DCS Ungⁿltige DELETE-Anweisung mit WHERE CURRENT OF
  5212.  
  5213.       Reason: A DELETE operation with a WHERE CURRENT OF cursorname attempted
  5214.           to delete from a self-referencing table.
  5215.  
  5216.       Remedy: Do not attempt to delete from a self-referencing table with
  5217.           WHERE CURRENT OF cursorname in the DELETE statement.
  5218.  
  5219. 01415 DLU DMR AbhΣngige Tabelle in Untetabfrage mu▀ eine RESTRICT-Regel zum L÷schen haben
  5220.  
  5221.       Reason: A dependent table is in a subquery where the relationship
  5222.           between parent table and the dependent table does not have the
  5223.           RESTRICT delete rule.
  5224.  
  5225.       Remedy: None.  A dependent table in a subquery must have the RESTRICT
  5226.           delete rule.
  5227.  
  5228. 01416 DLU UCP Ungⁿltige UPDATE-Anweisung mit WHERE CURRENT OF
  5229.  
  5230.       Reason: An UPDATE operation with WHERE CURRENT OF attempted to update a
  5231.           primary key of the object table.
  5232.  
  5233.       Remedy: Do not attempt to update a primary key with WHERE CURRENT OF in
  5234.           the UPDATE statement.
  5235.  
  5236. 01417 DLU TIC Tabelle ist nicht komplett
  5237.  
  5238.       Reason: Attempting to INSERT, UPDATE, or DELETE on an incomplete table.
  5239.  
  5240.       Remedy: Create the unique index on the primary key so that the table is
  5241.           considered complete before attempting to INSERT, UPDATE, or
  5242.           DELETE any data in the incomplete table.
  5243.  
  5244. 01418 DLU TAP Tabelle besitzt bereits einen PrimΣrschlⁿssel
  5245.  
  5246.       Reason: A primary key cannot be defined because the target table already
  5247.           has a primary key.
  5248.  
  5249.       Remedy: None.  A table cannot have more than one primary key.
  5250.  
  5251. 01419 DLU PCN PrimΣrschlⁿsselspalte mu▀ NOT NULL oder NOT NULL WITH DEFAULT sein
  5252.  
  5253.       Reason: The primary key cannot be defined because one or more of the
  5254.           columns forming this primary key are defined not as a NOT NULL
  5255.           or NOT NULL WITH DEFAULT.
  5256.  
  5257.       Remedy: Correct definition of primary key or modify the columns forming
  5258.           the primary key so each column is defined as either NOT NULL or
  5259.           NOT NULL WITH DEFAULT.
  5260.  
  5261. 01420 DLU TCK NUR INTERN VERWENDET: Die Tabelle wird gerade ⁿberprⁿft
  5262.  
  5263.       Reason: This is error is only used internally by the SQLBase system.
  5264.  
  5265.       Remedy: None.  This error code should never occur.  If you get this
  5266.           error, contact your local Gupta Technologies certified
  5267.           technical support center.
  5268.  
  5269. 01421 DLU FND Fremdschlⁿssel wurde im W÷rterbuch nicht gefunden
  5270.  
  5271.       Reason: Attempting to drop a foreign key or attempting to add, drop, or
  5272.           modify a referential integrity user error and the specified
  5273.           foreign key does not exist.
  5274.  
  5275.       Remedy: Correct the SQL statement.  Verify that the foreign key exists
  5276.           and check the spelling of the foreign key name.
  5277.  
  5278. 01422 DLU PND PrimΣrschlⁿssel wurde noch nicht definiert
  5279.  
  5280.       Reason: Attempting to drop a primary key and the specified primary key
  5281.           does not exist.
  5282.  
  5283.       Remedy: Correct the SQL statement.  Verify that the primary key exists
  5284.           and check the spelling of the primary key name.
  5285.  
  5286. 01423 DLU CPS PrimΣschlⁿssel kann der Systemtabelle nicht hinzugefⁿgt werden
  5287.  
  5288.       Reason: Cannot add a primary key to a system catalog table.
  5289.  
  5290.       Remedy: None.  A primary key cannot be added to a system catalog table.
  5291.  
  5292. 01424 DLU CFS Fremdschlⁿssel k÷nnen der Systemtabelle nicht hinzugefⁿgt werden
  5293.  
  5294.       Reason: Cannot add a foreign key to a system catalog table.
  5295.  
  5296.       Remedy: None.  A foreign key cannot be added to a system catalog table.
  5297.  
  5298. 01425 DLU MSC Mu▀ eine Einzelspalten-Unterabfrage sein
  5299.  
  5300.       Reason: Query not allowed because the results could be ambiguous, that
  5301.           is, the subselect which is the target of the WHERE clause can
  5302.           produce multiple values.
  5303.  
  5304.       Remedy: None.  A subselect cannot produce multiple values.  The
  5305.           subselect must produce a single column.
  5306.  
  5307. 01426 DLU NUS Keine Benutzerfehlermeldung fⁿr die Systemtabelle
  5308.  
  5309.       Reason: Cannot add referential integrity user errors for system tables.
  5310.  
  5311.       Remedy: None.  Referential integrity user errors cannot be added to a
  5312.           system catalog table.
  5313.  
  5314. 01427 DLU RIV ROWID ist in dieser Ansicht nicht erlaubt
  5315.  
  5316.       Reason: This error is currently undocumented.
  5317.  
  5318.       Remedy: Contact your local Gupta Technologies certified technical
  5319.           support center for assistance.
  5320.  
  5321.  
  5322. The errors documented in this section of the Error Guide are for general SQL
  5323. sort type errors that may occur when performing database operations that
  5324. require a sort like using the ORDER BY or GROUP BY clauses.
  5325.  
  5326. 01501 SRT CCR Sortierdatei kann nicht angelegt werden
  5327.  
  5328.       Reason: Attempting to create a file and a failure has occurred.
  5329.  
  5330.       Remedy: Determine and correct the cause of the create failure.  Run a
  5331.           check disk utility (CHKDSK) for the current operating system to
  5332.           verify the status of disk.  Verify that sufficient disk space is
  5333.           available and verify that the number of files allowed open for
  5334.           the operating system permits the additional file, that is, check
  5335.           the FILES= configuration parameter setting.
  5336.  
  5337. 01502 SRT QST Schwerer SQLBase-Systemfehler (SRT QST)
  5338.  
  5339.       Reason: This is a Fatal Error.
  5340.  
  5341.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5342.           If a FAIL.SQL file is available, then save it.  Attempt to
  5343.           reproduce the problem via a SQL script, scenario, or using the
  5344.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5345.           Contact your local Gupta certified technical support center.
  5346.  
  5347. 01503 SRT WTS Kein Speicherplatz mehr auf Datenbank-Computer (SRT WTS)
  5348.  
  5349.       Reason: Not enough memory at the database engine to perform the
  5350.           requested task.
  5351.  
  5352.       Remedy: Check available memory at the database computer.    Attempt to
  5353.           make more memory available.  To make more memory available for
  5354.           the database engine, you can reduce size of the CACHE.
  5355.  
  5356. 01504 SRT EOF Schwerer SQLBase-Systemfehler (SRT EOF)
  5357.  
  5358.       Reason: This is a Fatal Error.
  5359.  
  5360.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5361.           If a FAIL.SQL file is available, then save it.  Attempt to
  5362.           reproduce the problem via a SQL script, scenario, or using the
  5363.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5364.           Contact your local Gupta certified technical support center.
  5365.  
  5366. 01505 SRT RWF Fehler beim Schreiben auf Diskette oder Festplatte (SRT RWF)
  5367.  
  5368.       Reason: Attempting to write to a file and a disk write failure has
  5369.           occurred.
  5370.  
  5371.       Remedy: Determine and correct the cause of the disk write failure.  Most
  5372.           commonly, it may be because you have run out of available disk
  5373.           space.  If sufficient disk space is available, then run a check
  5374.           disk utility (CHKDSK) for the current operating system to verify
  5375.           the status of the disk.
  5376.  
  5377. 01506 SRT CSS Kein Speicherplatz mehr auf Datenbank-Computer (SRT CSS)
  5378.  
  5379.       Reason: Not enough memory at the database engine to perform the
  5380.           requested task.
  5381.  
  5382.       Remedy: Check available memory at the database computer.    Attempt to
  5383.           make more memory available.  To make more memory available for
  5384.           the database engine, you can reduce size of the CACHE.
  5385.  
  5386.  
  5387. The errors documented in this section of the Error Guide are for general SQL
  5388. data type checking errors.
  5389.  
  5390. 01601 TYP IDT Ungⁿltiger Datentyp
  5391.  
  5392.       Reason: An operand cannot be coerced into a valid data type.  Or, a LONG
  5393.           VARCHAR data type was expected and was not provided, or a LONG
  5394.           VARCHAR data type was specified when it is not expected.
  5395.  
  5396.       Remedy: Correct the SQL statement by providing valid data types.
  5397.  
  5398. 01602 TYP MBB Memo mu▀ mit einer Bindevariablen gesetzt werden
  5399.  
  5400.       Reason: LONG VARCHAR data must be bound to a set variable.
  5401.  
  5402.       Remedy: Correct the SQL statement.
  5403.  
  5404. 01603 TYP OLO Memodaten k÷nnen nicht geordnet werden
  5405.  
  5406.       Reason: Attempting a GROUP BY or ORDER BY on a LONG VARCHAR column.
  5407.  
  5408.       Remedy: Correct the SQL statement.  SQL cannot GROUP BY or ORDER BY a
  5409.           LONG VARCHAR column.
  5410.  
  5411. 01604 TYP CUR Eine ROWID-Spalte kann nicht aktualisiert oder eingefⁿgt werden
  5412.  
  5413.       Reason: Attempting to update or insert a ROWID column.
  5414.  
  5415.       Remedy: Correct the SQL statement.  ROWIDs are unique and assigned by
  5416.           the SQLBase system.
  5417.  
  5418. 01605 TYP CMS Systemdaten k÷nnen nicht verΣndert werden
  5419.  
  5420.       Reason: Attempting to insert or delete rows of data from a system table.
  5421.           Or, attempting to insert or update data in a system table.
  5422.  
  5423.       Remedy: None. Systems tables are maintained by the database system.
  5424.  
  5425. 01606 TYP IDA Ungⁿltige Datenarithmetik
  5426.  
  5427.       Reason: Attempting to perform an arithmetic operation on a date and
  5428.           the operation is considered invalid.
  5429.  
  5430.       Remedy: Correct the SQL statement.
  5431.  
  5432. 01607 TYP IET Ungⁿltiger externer Datentyp
  5433.  
  5434.       Reason: An invalid external data type has been specified.
  5435.  
  5436.       Remedy: Correct the SQL statement.
  5437.  
  5438. 01608 TYP IIS Datum/Zeit-Intervallausdrⁿcke sind in Auswahlliste nicht erlaubt
  5439.  
  5440.       Reason: A date/time interval with only a year, a month, a day, or a time
  5441.           interval is not allowed in the select list.
  5442.  
  5443.       Remedy: Correct the SQL statement.
  5444.  
  5445. 01609 TYP INC Datum/Zeit-Intervallvergleiche sind nicht erlaubt
  5446.  
  5447.       Reason: A date/time interval with only a year, a month, a day, or a time
  5448.           interval is not allowed in the comparison.
  5449.  
  5450.       Remedy: Correct the SQL statement.
  5451.  
  5452. 01610 TYP CCL Memodaten (VARCHAR) k÷nnen nicht verglichen werden
  5453.  
  5454.       Reason: LONG VARCHAR data cannot be specified in a comparison.
  5455.  
  5456.       Remedy: Correct the SQL statement.
  5457.  
  5458. 01611 TYP MBC Mu▀ fⁿr diese Funktion eine Spalte sein
  5459.  
  5460.       Reason: This error is currently undocumented.
  5461.  
  5462.       Remedy: Contact your local Gupta Technologies certified technical
  5463.           support center for assistance.
  5464.  
  5465. 01612 TYP DNC Mu▀ fⁿr diese Funktion ein Zeichen-Datentyp sein
  5466.  
  5467.       Reason: This error is currently undocumented.
  5468.  
  5469.       Remedy: Contact your local Gupta Technologies certified technical
  5470.           support center for assistance.
  5471.  
  5472.  
  5473. The errors documented in this section of the Error Guide are for general
  5474. application programming interface type errors.
  5475.  
  5476. 01701 GPI INF Ungⁿltiger Funktionsaufruf
  5477.  
  5478.       Reason: The genernal programming interface has dispatched an invalid
  5479.           function call.
  5480.  
  5481.       Remedy: If using the standard Microsoft C 5.1 compiler, the Micro Focus
  5482.           COBOL interface, or the Realia COBOL interface then contact your
  5483.           local Gupta Technologies certified technical support center for
  5484.           assistance.  If using the general programming interface with
  5485.           another programming language or compiler, then check to be sure
  5486.           that the general programming interface program is passing a
  5487.           valid function call number.
  5488.  
  5489. 01702 GPI DNI NICHT VERWENDET
  5490.  
  5491.       Reason: This is error code is currently not used by the SQLBase system.
  5492.  
  5493.       Remedy: None.  This error code should never occur.  If you get this
  5494.           error, contact your local Gupta Technologies certified
  5495.           technical support center.
  5496.  
  5497. 01703 GPI IPL Falsche ParameterlΣnge
  5498.  
  5499.       Reason: The general programming interface has dispatched a message and
  5500.           the parameter length is incorrect.
  5501.  
  5502.       Remedy: If using the standard MicroSoft C 5.1 compiler, the Micro Focus
  5503.           COBOL interface, or the Realia COBOL interface then contact your
  5504.           local Gupta Technologies certified technical support center for
  5505.           assistance.  If using the general programming interface with
  5506.           another programming language or compiler, then check to be sure
  5507.           that the general programming interface program is passing a
  5508.           valid message.
  5509.  
  5510. 01704 GPI IDT Ungⁿltige Absendertabelle
  5511.  
  5512.       Reason: The dispatch table in the general programming interface has
  5513.           been determined to be invalid.
  5514.  
  5515.       Remedy: Contact your local Gupta Technologies certified technical
  5516.           support center for assistance.
  5517.  
  5518. 01705 GPI IPM Ungⁿltige Parameter
  5519.  
  5520.       Reason: A windows applications has called SQLDON accidentally.
  5521.  
  5522.       Remedy: Contact your local Gupta Technologies certified technical
  5523.           support center for assistance.
  5524.  
  5525. 01706 GPI OUD Kein weiterer Speicherplatz mehr beim Client vorhanden (GPI OUD)
  5526.  
  5527.       Reason: The application has run out of memory at the client workstation.
  5528.  
  5529.       Remedy: Check available memory at the client workstation.  Attempt to
  5530.           make more memory available.
  5531.  
  5532. 01707 GPI RMD Real-mode-Datenbank
  5533.  
  5534.       Reason: The database code is running in real mode and the application
  5535.           program is running in protected mode, the database code cannot
  5536.           access the application's data.  The database code cannot
  5537.           convert a protected mode descriptor into a real mode address.
  5538.  
  5539.       Remedy: Run database and application program in same mode.
  5540.  
  5541. 01708 GPI OOM Kein weiterer Speicherplatz mehr beim Client vorhanden (GPI OOM)
  5542.  
  5543.       Reason: The application has run out of memory at the client workstation.
  5544.  
  5545.       Remedy: Check available memory at the client workstation.  Attempt to
  5546.           make more memory available.
  5547.  
  5548.  
  5549. The errors documented in this section of the Error Guide are general
  5550. database lock manager errors.
  5551. 10/30/91 DBS OPTIMIZERLEVEL parameter
  5552.  
  5553. 01801 LKM DLK System ist deadlocked (verriegelt)
  5554.  
  5555.       Reason: The database system has determined a system deadlock situation.
  5556.           A deadlock situation is an occurence such that two or more
  5557.           transactions are in a simultenous wait state, each one waiting
  5558.           for one of the other to release a lock before it can proceed.
  5559.           SQLBase detects deadlocks immediately, that is, without waiting
  5560.           the duration of the timeout period.  If SQLBase detects a
  5561.           deadlock it will break the deadlock by rolling back the
  5562.           transaction that detected the deadlock and return this error
  5563.           message to the detector.    The other transaction will continue
  5564.           not even knowing a deadlock situation was determined.
  5565.  
  5566.       Remedy: Determine what transactions are becoming deadlocked and attempt
  5567.           to make changes so that the deadlock situation does not occur
  5568.           frequently.  A COMMIT as often as possible often helps to avoid
  5569.           deadlocks.
  5570.  
  5571. 01802 LKM ILE Sperreneingaben sind ungenⁿgend
  5572.  
  5573.       Reason: The database server has exceeded the number of possible locks.
  5574.  
  5575.       Remedy: Increase the number of database server locks by changing the
  5576.           configuration parameter in the SQL.INI file associated with the
  5577.           database server.    The parameter is LOCKS=nnn.  This parameter
  5578.           sets the maximum number of lock entries that will be allocated.
  5579.           Locks entries are dynamically allocated as they are needed in
  5580.           groups of 100.  If the LOCKS= parameter is not used, locks will
  5581.           be allocated as needed until there is not enough memory left.
  5582.           The only time you need to specify this keyword is when you are
  5583.           trying to protect against a run-away application that is
  5584.           accessing too much data in one transaction.  If you are getting
  5585.           this error, then chances are good that you have a run-away
  5586.           application on your hands.
  5587.  
  5588. 01803 LKM ITC Schwerer SQLBase-Systemfehler (LKM ITC)
  5589.  
  5590.       Reason: This is a Fatal Error.
  5591.  
  5592.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5593.           If a FAIL.SQL file is available, then save it.  Attempt to
  5594.           reproduce the problem via a SQL script, scenario, or using the
  5595.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5596.           Contact your local Gupta certified technical support center.
  5597.  
  5598. 01804 LKM ILC Schwerer SQLBase-Systemfehler (LKM ILC)
  5599.  
  5600.       Reason: This is a Fatal Error.
  5601.  
  5602.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5603.           If a FAIL.SQL file is available, then save it.  Attempt to
  5604.           reproduce the problem via a SQL script, scenario, or using the
  5605.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5606.           Contact your local Gupta certified technical support center.
  5607.  
  5608. 01805 LKM TMO Zeitsperre
  5609.  
  5610.       Reason: The transaction is waiting for a resource currently locked by
  5611.           another transaction.  The transaction will wait by default 275
  5612.           seconds unless specified otherwise.
  5613.  
  5614.       Remedy: Determine what transaction is locking the resouces and attempt
  5615.           to make changes so that the wait situation does not occur
  5616.           frequently.  A COMMIT as often as possible often helps to avoid
  5617.           these time out condition.  To reduce the time wait period you
  5618.           can use the set timeout function call (sqltio) or in SQLTalk you
  5619.           can SET TIMEOUT n where n is the number of seconds.  The number
  5620.           of seconds can range from 1 to 1800 seconds (30 minutes).
  5621.  
  5622. 01806 LKM OLE Schwerer SQLBase-Systemfehler (LKM OLE)
  5623.  
  5624.       Reason: This is a Fatal Error.
  5625.  
  5626.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5627.           If a FAIL.SQL file is available, then save it.  Attempt to
  5628.           reproduce the problem via a SQL script, scenario, or using the
  5629.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5630.           Contact your local Gupta certified technical support center.
  5631.  
  5632. 01807 LKM TMP Schwerer SQLBase-Systemfehler (LKM TMP)
  5633.  
  5634.       Reason: This is a Fatal Error.
  5635.  
  5636.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5637.           If a FAIL.SQL file is available, then save it.  Attempt to
  5638.           reproduce the problem via a SQL script, scenario, or using the
  5639.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5640.           Contact your local Gupta certified technical support center.
  5641.  
  5642. 01808 LKM CAL Kein Speicherplatz mehr auf Datenbank-Computer (LKM CAL)
  5643.  
  5644.       Reason: Not enough memory at the database engine to perform the
  5645.           requested task.
  5646.  
  5647.       Remedy: Check available memory at the database computer.    Attempt to
  5648.           make more memory available.  To make more memory available for
  5649.           the database engine, you can reduce size of the CACHE.
  5650.  
  5651. 01809 LKM LPB Kein Speicherplatz mehr auf Datenbank-Computer (LKM LPB)
  5652.  
  5653.       Reason: Not enough memory at the database engine to perform the
  5654.           requested task.
  5655.  
  5656.       Remedy: Check available memory at the database computer.    Attempt to
  5657.           make more memory available.  To make more memory available for
  5658.           the database engine, you can reduce size of the CACHE.
  5659.  
  5660. 01810 LKM WST NICHT VERWENDET
  5661.  
  5662.       Reason: This is error code is currently not used by the SQLBase system.
  5663.  
  5664.       Remedy: None.  This error code should never occur.  If you get this
  5665.           error, contact your local Gupta Technologies certified
  5666.           technical support center.
  5667.  
  5668. 01811 LKM FDU Schwerer SQLBase-Systemfehler (LKM FDU)
  5669.  
  5670.       Reason: This is a Fatal Error.
  5671.  
  5672.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5673.           If a FAIL.SQL file is available, then save it.  Attempt to
  5674.           reproduce the problem via a SQL script, scenario, or using the
  5675.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5676.           Contact your local Gupta certified technical support center.
  5677.  
  5678. 01812 LKM IWS Kein Speicherplatz mehr auf Datenbank-Computer (LKM IWS)
  5679.  
  5680.       Reason: Not enough memory at the database engine to perform the
  5681.           requested task.
  5682.  
  5683.       Remedy: Check available memory at the database computer.    Attempt to
  5684.           make more memory available.  To make more memory available for
  5685.           the database engine, you can reduce size of the CACHE.
  5686.  
  5687.  
  5688. The errors documented in this section of the Error Guide are for general
  5689. SQLBase system type errors.
  5690.  
  5691. 01901 SYS ICV Schwerer SQLBase-Systemfehler (SYS ICV)
  5692.  
  5693.       Reason: This is a Fatal Error.
  5694.  
  5695.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5696.           If a FAIL.SQL file is available, then save it.  Attempt to
  5697.           reproduce the problem via a SQL script, scenario, or using the
  5698.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5699.           Contact your local Gupta certified technical support center.
  5700.  
  5701. 01902 SYS SNA Schwerer SQLBase-Systemfehler (SYS SNA)
  5702.  
  5703.       Reason: This is a Fatal Error.
  5704.  
  5705.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5706.           If a FAIL.SQL file is available, then save it.  Attempt to
  5707.           reproduce the problem via a SQL script, scenario, or using the
  5708.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5709.           Contact your local Gupta certified technical support center.
  5710.  
  5711. 01903 SYS EXC Schwerer SQLBase-Systemfehler (SYS EXC)
  5712.  
  5713.       Reason: This is a Fatal Error.
  5714.  
  5715.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5716.           If a FAIL.SQL file is available, then save it.  Attempt to
  5717.           reproduce the problem via a SQL script, scenario, or using the
  5718.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5719.           Contact your local Gupta certified technical support center.
  5720.  
  5721. 01904 SYS CGD Schwerer SQLBase-Systemfehler (SYS CGD)
  5722.  
  5723.       Reason: This is a Fatal Error.
  5724.  
  5725.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5726.           If a FAIL.SQL file is available, then save it.  Attempt to
  5727.           reproduce the problem via a SQL script, scenario, or using the
  5728.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5729.           Contact your local Gupta certified technical support center.
  5730.  
  5731. 01905 SYS CSD Schwerer SQLBase-Systemfehler (SYS CSD)
  5732.  
  5733.       Reason: This is a Fatal Error.
  5734.  
  5735.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5736.           If a FAIL.SQL file is available, then save it.  Attempt to
  5737.           reproduce the problem via a SQL script, scenario, or using the
  5738.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5739.           Contact your local Gupta certified technical support center.
  5740.  
  5741. 01906 SYS MBP Schwerer SQLBase-Systemfehler (SYS MBP)
  5742.  
  5743.       Reason: This is a Fatal Error.
  5744.  
  5745.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5746.           If a FAIL.SQL file is available, then save it.  Attempt to
  5747.           reproduce the problem via a SQL script, scenario, or using the
  5748.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5749.           Contact your local Gupta certified technical support center.
  5750.  
  5751. 01907 SYS MLM Schwerer SQLBase-Systemfehler (SYS MLM)
  5752.  
  5753.       Reason: This is a Fatal Error.
  5754.  
  5755.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  5756.           If a FAIL.SQL file is available, then save it.  Attempt to
  5757.           reproduce the problem via a SQL script, scenario, or using the
  5758.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  5759.           Contact your local Gupta certified technical support center.
  5760.  
  5761. 01908 SYS NMF Keine weiteren Dateien
  5762.  
  5763.       Reason: This error code indicates that the last file name has been read
  5764.           indicating an end of the directory has been reached.
  5765.  
  5766.       Remedy: None.  Informational only.
  5767.  
  5768. 01909 SYS PNF Pfad wurde nicht gefunden, oder Pfadname ⁿberschreitet maximale LΣnge
  5769.  
  5770.       Reason: Attempting to open a directory or read files from a directory
  5771.           and the directory path has not been found or the directory name
  5772.           exceeds the maximum range.
  5773.  
  5774.       Remedy: If the directory is not open, then open it.  If the directory
  5775.           cannot be opened, verify that the specified directory exists.
  5776.  
  5777. 01910 SYS DCF NICHT VERWENDET
  5778.  
  5779.       Reason: This is error code is currently not used by the SQLBase system.
  5780.  
  5781.       Remedy: None.  This error code should never occur.  If you get this
  5782.           error, contact your local Gupta Technologies certified
  5783.           technical support center.
  5784.  
  5785. 01911 SYS SOV NICHT VERWENDET
  5786.  
  5787.       Reason: This is error code is currently not used by the SQLBase system.
  5788.  
  5789.       Remedy: None.  This error code should never occur.  If you get this
  5790.           error, contact your local Gupta Technologies certified
  5791.           technical support center.
  5792.  
  5793. 01912 SYS ACC Zugriffsversto▀ beim Datei ÷ffnen
  5794.  
  5795.       Reason: UNIX file access violation attempting to open a file.
  5796.  
  5797.       Remedy: Verify that the file name was correctly specified and that you
  5798.           have access to the specified file.
  5799.  
  5800. 01913 SYS BOM NUR INTERN VERWENDET: System vernichtet!
  5801.  
  5802.       Reason: This is error is only used internally by the SQLBase system.
  5803.  
  5804.       Remedy: None.  This error code should never occur.  If you get this
  5805.           error, contact your local Gupta Technologies certified
  5806.           technical support center.
  5807.  
  5808. 01914 SYS URF INTERNAL USE ONLY - Referenz-Check nicht ben÷tigter Symbole
  5809.  
  5810.       Reason: This error is only used internally by the SQLBase system.
  5811.  
  5812.       Remedy: None.  This error code should never occur.  If you get this
  5813.           error, contact your local Gupta Technologies certified
  5814.           technical support center.
  5815.  
  5816. 01915 SYS OOM Kein Speicherplatz fⁿr die Daten-Ver-/Entschlⁿsselung
  5817.  
  5818.       Reason: The application has run out of memory at the client workstation.
  5819.  
  5820.       Remedy: Check available memory at the client workstation.  Attempt to
  5821.           make more memory available.
  5822.  
  5823.  
  5824. The errors documented in this section of the Error Guide are for errors that
  5825. might occur during the loading of the database program.
  5826.  
  5827. 02001 LOD IWS Kein Speicherplatz mehr auf Datenbank-Computer (LOD IWS)
  5828.  
  5829.       Reason: Not enough memory at the database engine to perform the
  5830.           requested task.
  5831.  
  5832.       Remedy: Check available memory at the database computer.    Attempt to
  5833.           make more memory available.  To make more memory available for
  5834.           the database engine, you can reduce size of the CACHE.
  5835.  
  5836. 02002 LOD NAI Asynchrone E/A isT nicht verfⁿgbar
  5837.  
  5838.       Reason: Attempting to enable ASYNCIO configuration parameter and the
  5839.           asynchronous I/O feature is not available with under this
  5840.           operating system.
  5841.  
  5842.       Remedy: Asynchronous I/O is only available under OS/2 and UNIX.
  5843.  
  5844. 02003 LOD ATL In diesem Bereich sind nur einzelne Zeichen erlaubt
  5845.  
  5846.       Reason: This error is currently undocumented.
  5847.  
  5848.       Remedy: Contact your local Gupta Technologies certified technical
  5849.           support center for assistance.
  5850.  
  5851. 02004 LOD CFC Datei COUNTRY.SQL wurde nicht gefunden
  5852.  
  5853.       Reason: This error is currently undocumented.
  5854.  
  5855.       Remedy: Contact your local Gupta Technologies certified technical
  5856.           support center for assistance.
  5857.  
  5858. 02005 LOD IVC Das gewΣhlte Land wurde in der Datei COUNTRY.SQL nicht gefunden
  5859.  
  5860.       Reason: This error is currently undocumented.
  5861.  
  5862.       Remedy: Contact your local Gupta Technologies certified technical
  5863.           support center for assistance.
  5864.  
  5865. 02006 LOD ICD Ungⁿltige Anweisung wurde in der Datei COUNTRY.SQL gefunden
  5866.  
  5867.       Reason: This error is currently undocumented.
  5868.  
  5869.       Remedy: Contact your local Gupta Technologies certified technical
  5870.           support center for assistance.
  5871.  
  5872. 02007 LOD IHX Ungⁿltige hexadezimale Zahl wurde in der Datei COUNTRY.SQL gefunden
  5873.  
  5874.       Reason: This error is currently undocumented.
  5875.  
  5876.       Remedy: Contact your local Gupta Technologies certified technical
  5877.           support center for assistance.
  5878.  
  5879. 02008 LOD CTB Zeichenkette in der Datei COUNTRY.SQL ist zu lang
  5880.  
  5881.       Reason: This error is currently undocumented.
  5882.  
  5883.       Remedy: Contact your local Gupta Technologies certified technical
  5884.           support center for assistance.
  5885.  
  5886. 02009 LOD NTT Fehlende zweite ▄bersetzungszeichenkette im TRANSLATE-Bereich der Datei COUNTRY.SQL
  5887.  
  5888.       Reason: This error is currently undocumented.
  5889.  
  5890.       Remedy: Contact your local Gupta Technologies certified technical
  5891.           support center for assistance.
  5892.  
  5893. 02010 LOD SMM So viele ▄bersetzungen sind in der Datei COUNTRY.SQL nicht erlaubt
  5894.  
  5895.       Reason: This error is currently undocumented.
  5896.  
  5897.       Remedy: Contact your local Gupta Technologies certified technical
  5898.           support center for assistance.
  5899.  
  5900. 02011 LOD UL1 Zeichenketten im UPPER zu LOWER-Bereich der Datei COUNTRY.SQL mⁿssen das selbe Zeichen enthalten
  5901.  
  5902.       Reason: This error is currently undocumented.
  5903.  
  5904.       Remedy: Contact your local Gupta Technologies certified technical
  5905.           support center for assistance.
  5906.  
  5907. 02012 LOD UL2 Zeichenketten mⁿssen im UPPER zu LOWER-Bereich der Datei COUNTRY.SQL paarweise auftreten
  5908.  
  5909.       Reason: This error is currently undocumented.
  5910.  
  5911.       Remedy: Contact your local Gupta Technologies certified technical
  5912.           support center for assistance.
  5913.  
  5914.  
  5915. The errors documented in this section of the Error Guide are for errors that
  5916. can occur when the database is performing file operations.
  5917.  
  5918. 02101 FIL CLO Datei kann nicht geschlossen werden
  5919.  
  5920.       Reason: The database system is attempting to close a file and is
  5921.           gettting an operating system error.  This is a Fatal Error.
  5922.  
  5923.       Remedy: Try to determine why the operating system cannot close the
  5924.           file.  Contact your local Gupta Technologies certified technical
  5925.           support center.
  5926.  
  5927. 02102 FIL DEL Datei kann nicht gel÷scht werden
  5928.  
  5929.       Reason: The database system is attempting to delete a file and is
  5930.           gettting an operating system error.  This is a Fatal Error.
  5931.  
  5932.       Remedy: Try to determine why the operating system cannot delete the
  5933.           file.  Contact your local Gupta Technologies certified technical
  5934.           support center.
  5935.  
  5936. 02103 FIL LSK lseek kann nicht ausgefⁿhrt werden
  5937.  
  5938.       Reason: The database system is attempting to seek into a file and is
  5939.           gettting an operating system error.  This is a Fatal Error.
  5940.  
  5941.       Remedy: Try to determine why the operating system cannot seek into the
  5942.           file.  Contact your local Gupta Technologies certified technical
  5943.           support center.
  5944.  
  5945. 02104 FIL RWF Lese- oder Schreibfehler
  5946.  
  5947.       Reason: The database system is attempting to read or write to a file
  5948.           and is gettting an operating system error.  This is a Fatal
  5949.           Error.
  5950.  
  5951.       Remedy: Try to determine why the operating system cannot read or write
  5952.           to a file.  Contact your local Gupta Technologies certified
  5953.           technical support center.
  5954.  
  5955. 02105 FIL CWT Durchschreiben kann nicht eingestellt werden
  5956.  
  5957.       Reason: Attempting to make sure that a file is set for write-through
  5958.           mode.  This means that when data is written, it is actually
  5959.           written to disk and not simply buffered.
  5960.  
  5961.       Remedy: Determine why the operating system will not allow the setting
  5962.           for write-through mode.
  5963.  
  5964. 02106 FIL OOM Kein Speicherplatz mehr auf Datenbank-Computer (FIL OOM)
  5965.  
  5966.       Reason: Not enough memory at the database engine to perform the
  5967.           requested task.
  5968.  
  5969.       Remedy: Check available memory at the database computer.    Attempt to
  5970.           make more memory available.  To make more memory available for
  5971.           the database engine, you can reduce size of the CACHE.
  5972.  
  5973. 02107 FIL AID Asynchrone E/A nicht gestartet
  5974.  
  5975.       Reason: Attempting to initiate an asynchronous read or write from a
  5976.           file and asynchronus I/O did not start. This is a
  5977.           Fatal Error.
  5978.  
  5979.       Remedy: Determine why asynchronous I/O did not start.
  5980.  
  5981. 02108 FIL AIF Fehler bei der asynchronen E/A
  5982.  
  5983.       Reason: An asynchronous read/write failure has occurred. This is a
  5984.           Fatal Error.
  5985.  
  5986.       Remedy: Determine why the operating system could not perform the
  5987.           asynchronous I/O operation.
  5988.  
  5989. 02109 FIL APF Fehler bei der asynchronen E/A-Position
  5990.  
  5991.       Reason: An asynchronous positioning within a file failed. This is
  5992.           a Fatal Error.
  5993.  
  5994.       Remedy: Determine why the operating system could not perform the
  5995.           asynchronous I/O operation.
  5996.  
  5997. 02110 FIL CSF Dateibeschreiberstatus kann nicht eingelesen werden
  5998.  
  5999.       Reason: Attempting to get a file descriptor status and a failure has
  6000.           occurred.
  6001.  
  6002.       Remedy: Determine why the operating system could not get the file
  6003.           descriptor status.
  6004.  
  6005. 02111 FIL PSE Partitionsgr÷▀enfehler
  6006.  
  6007.       Reason: Attempting to get the partition size and a failure has occurred.
  6008.           This is a Fatal Error.
  6009.  
  6010.       Remedy: Determine why the operating system could not get the partition
  6011.           file size.
  6012.  
  6013. 02112 FIL OOS Kein Speicherplatz auf Diskette oder Festplatte mehr vorhanden
  6014.  
  6015.       Reason: There is not enough disk space to perform this operation.
  6016.  
  6017.       Remedy: Terminate program and remove files to free up disk space.
  6018.  
  6019. 02113 FIL SAR Fehler beim asynchronen Kurz-lesen
  6020.  
  6021.       Reason: The database system is attempting to read from a file. The
  6022.           operating system asynchronous disk read request read fewer
  6023.           bytes than requested. This is a Fatal Error.
  6024.  
  6025.       Remedy: Determine why the operating system did not return either an
  6026.           error condition or exactly the number of bytes requested.
  6027.  
  6028. 02114 FIL SAW Fehler beim asynchronen Kurz-schreiben
  6029.  
  6030.       Reason: The database system is attempting to write to a file. The
  6031.           operating system asynchronous disk write request wrote
  6032.           fewer bytes than requested. This is a Fatal Error.
  6033.  
  6034.       Remedy: Determine why the operating system did not return either an
  6035.           error condition or write exactly the number of bytes requested.
  6036.  
  6037. 02115 FIL ARE Asynchroner Lesefehler
  6038.  
  6039.       Reason: The database system is attempting to read from a file. The
  6040.           operating system asynchronous disk read request returned an
  6041.           error. This is a Fatal Error.
  6042.  
  6043.       Remedy: Determine why the operating system returned an error.
  6044.  
  6045. 02116 FIL AWE Asynchroner Schreibfehler
  6046.  
  6047.       Reason: The database system is attempting to write to a file. The
  6048.           operating system asynchronous disk write request returned an
  6049.           error. This is a Fatal Error.
  6050.  
  6051.       Remedy: Determine why the operating system returned an error.
  6052.  
  6053. 02117 FIL IFO FIFO Filetyp nicht erlaubt in diesem Zusammenhang
  6054.  
  6055.       Reason: A file was specified that has been found to be a FIFO. These
  6056.           are not allowed in this conext.
  6057.  
  6058.       Remedy: re-specify a suitable file type.
  6059.  
  6060. 02118 FIL BLK Block spezial Files sind nicht erlaubt in diesem Zusammenhang
  6061.  
  6062.       Reason: A file was specified that has been found to be a block special
  6063.           file. These are not allowed in this conext.
  6064.  
  6065.       Remedy: re-specify a suitable file type.
  6066.  
  6067. 02119 FIL DIR Verzeichnisse sind nicht erlaubt in diesem Zusammenhang
  6068.  
  6069.       Reason: A file was specified that has been found to be a directory.
  6070.           these are not allowed in this conext.
  6071.  
  6072.       Remedy: re-specify a suitable file type.
  6073.  
  6074.  
  6075. The errors documented in this section of the Error Guide are for errors that
  6076. can occur when the database is evaluating incoming values.
  6077.  
  6078. 02201 EVA SRN NICHT VERWENDET
  6079.  
  6080.       Reason: This is error code is currently not used by the SQLBase system.
  6081.  
  6082.       Remedy: None.  This error code should never occur.  If you get this
  6083.           error, contact your local Gupta Technologies certified
  6084.           technical support center.
  6085.  
  6086. 02202 EVA SRM Unterauswahl ergab mehrere Zeilen
  6087.  
  6088.       Reason: Attempting a subselect that should identify only one row but
  6089.           the subselect result set consists of more than one row.
  6090.  
  6091.       Remedy: Correct the SQL statement.
  6092.  
  6093. 02203 EVA DAO Datenarithmetik: ▄ber/Unterlauf
  6094.  
  6095.       Reason: Date arithmetic has caused either an overflow or underflow
  6096.           condition.
  6097.  
  6098.       Remedy: Correct the SQL statement.  A date cannot have a numeric value
  6099.           for the year that is less than zero or greater than 9999.
  6100.  
  6101. 02204 EVA IVH Ungⁿltiger Stundenwert
  6102.  
  6103.       Reason: Specified hour is less than zero or greater than 23.
  6104.  
  6105.       Remedy: Correct the specified hour.
  6106.  
  6107. 02205 EVA IVM Ungⁿltiger Minutenwert
  6108.  
  6109.       Reason: Specified minutes are less than zero or greater than 59.
  6110.  
  6111.       Remedy: Correct the specified minutes.
  6112.  
  6113. 02206 EVA IVS Ungⁿltiger Sekundenwert
  6114.  
  6115.       Reason: Specified seconds are less than zero or greater than 59.
  6116.  
  6117.       Remedy: Correct the specified seconds.
  6118.  
  6119. 02207 EVA IVD Ungⁿltiger Tageswert
  6120.  
  6121.       Reason: Specified day is not valid.
  6122.  
  6123.       Remedy: Correct the specified day.
  6124.  
  6125. 02208 EVA IVY Ungⁿltiger Jahreswert
  6126.  
  6127.       Reason: Specified year is not valid.
  6128.  
  6129.       Remedy: Correct the specified year.
  6130.  
  6131. 02209 EVA IVO Ungⁿltiger Monatswert
  6132.  
  6133.       Reason: Specified month is not valid.
  6134.  
  6135.       Remedy: Correct the specified month.
  6136.  
  6137. 02210 EVA COR @CHAR-Wert liegt au▀erhalb des Bereichs
  6138.  
  6139.       Reason: Specified character is outside the range of valid characters.
  6140.  
  6141.       Remedy: Correct the specified character value.
  6142.  
  6143. 02211 EVA IVL Ungⁿltige LΣnge
  6144.  
  6145.       Reason: Specified length exceeds allowable limit.
  6146.  
  6147.       Remedy: Correct the length of the specified value.
  6148.  
  6149. 02212 EVA NOF Numerischer ▄berlauf
  6150.  
  6151.       Reason: Attempting a mathematical related function and a numeric
  6152.           overflow has occurred.
  6153.  
  6154.       Remedy: Correct the SQL statement.  This problem may often be caused by
  6155.           inadvertently dividing by zero in your SQL statement.
  6156.  
  6157. 02213 EVA ISN Ungⁿltige @CHOOSE-Markiererzahl
  6158.  
  6159.       Reason: The specified @CHOOSE select number is invalid.  A negative
  6160.           selector-number maps to the first value in the list (value 0).
  6161.           If the selector number exceeds the number of values in the list,
  6162.           the result is the last value in the list.
  6163.  
  6164.       Remedy: Correct the @CHOOSE selector number.
  6165.  
  6166. 02214 EVA STL Zeichenkette ist zu lang
  6167.  
  6168.       Reason: Attempting to concatenate two strings and the resulting string
  6169.           is greater than 254 characters.
  6170.  
  6171.       Remedy: Correct the SQL statement concatenation.
  6172.  
  6173. 02215 EVA VNZ NICHT VERWENDET
  6174.  
  6175.       Reason: This is error code is currently not used by the SQLBase system.
  6176.  
  6177.       Remedy: None.  This error code should never occur.  If you get this
  6178.           error, contact your local Gupta Technologies certified
  6179.           technical support center.
  6180.  
  6181. 02216 EVA VNI Der Wert ist kein Integer
  6182.  
  6183.       Reason: Specified value is not an integer.
  6184.  
  6185.       Remedy: Correct the invalid integer value.
  6186.  
  6187. 02217 EVA NUF Numerischer Unterlauf
  6188.  
  6189.       Reason: Attempting a mathematical related function and a numeric
  6190.           underflow has occurred.
  6191.  
  6192.       Remedy: Correct the SQL statement.
  6193.  
  6194. 02218 EVA SNG Versuch, die Quadratwurzel einer negativen Zahl zu ziehen
  6195.  
  6196.       Reason: Attempting to find the square root of a negative number.
  6197.  
  6198.       Remedy: Correct the SQL statement.
  6199.  
  6200. 02219 EVA VIN Der Wert darf nicht negativ sein
  6201.  
  6202.       Reason: Attempting a @HEX or @FACTORIAL and the specified argument
  6203.           equates to a negative value.
  6204.  
  6205.       Remedy: Correct the SQL statement.
  6206.  
  6207. 02220 EVA NZO Wert ist weder null noch eins
  6208.  
  6209.       Reason: Attempting a @FIND, @LEFT, @LENGTH, @RIGHT, @REPLACE,
  6210.           @SUBSTRING, or @SCAN in double-byte character set mode and the
  6211.           extra, last parameter must be one or zero.  One meaning you want
  6212.           this function to operate in single-byte mode.  Zero meaning you
  6213.           want to operate in the default, double-byte mode.
  6214.  
  6215.       Remedy: Correct last parameter in @function.  Can only be one or zero.
  6216.  
  6217. 02221 EVA ENR Es wurde versucht, den Wert einer Spalte zu bestimmen, auf die nicht verwiesen wurde
  6218.  
  6219.       Reason: This error is currently undocumented.
  6220.  
  6221.       Remedy: Contact your local Gupta Technologies certified technical
  6222.           support center for assistance.
  6223.  
  6224.  
  6225. The errors documented in this section of the Error Guide are for errors that
  6226. relate to result set mode operations.
  6227.  
  6228. 02401 RST COR Ergebnismenge kann nicht ge÷ffnet werden
  6229.  
  6230.       Reason: Cannot open the stored result set by the specified name.
  6231.  
  6232.       Remedy: Verify that the stored result set name is correct and try again.
  6233.  
  6234. 02402 RST COT NICHT VERWENDET
  6235.  
  6236.       Reason: This is error code is currently not used by the SQLBase system.
  6237.  
  6238.       Remedy: None.  This error code should never occur.  If you get this
  6239.           error, contact your local Gupta Technologies certified
  6240.           technical support center.
  6241.  
  6242. 02403 RST CCF NICHT VERWENDET
  6243.  
  6244.       Reason: This is error code is currently not used by the SQLBase system.
  6245.  
  6246.       Remedy: None.  This error code should never occur.  If you get this
  6247.           error, contact your local Gupta Technologies certified
  6248.           technical support center.
  6249.  
  6250. 02404 RST FNX Filterdatei existiert nicht
  6251.  
  6252.       Reason: Cannot delete the stored result set by the specified name or
  6253.           attempting to do an undo result set operation and there is no
  6254.           existing result set to undo.
  6255.  
  6256.       Remedy: Verify that the store result set name is correct and try again
  6257.           or if attempting to undo a result there is no remedy, you cannot
  6258.           undo a result set if no result set exists.
  6259.  
  6260. 02405 RST RSA Ergebnismenge ist bereits aktiv
  6261.  
  6262.       Reason: Attempting to start restriction mode processing or restart a
  6263.           stored result set in restriction mode and the restriction mode
  6264.           (or result set mode) is already active.
  6265.  
  6266.       Remedy: Stop the current restriction mode process before beginnning a
  6267.           new restriction mode or restarting a stored result set.
  6268.  
  6269. 02406 RST RSN Ergebnismenge ist nicht aktiv
  6270.  
  6271.       Reason: Attempting to stop restriction mode processing and restriction
  6272.           (or result set) mode is not currently active OR attempting to
  6273.           position within a result set and the result is empty.
  6274.  
  6275.       Remedy: None.  You cannot stop restriction mode if it is not active and
  6276.           you cannot position within an empty result set.
  6277.  
  6278. 02407 RST RSI Ergebnismengenbezeichner zu lang
  6279.  
  6280.       Reason: Attempting to store, delete, or restart a result set and the
  6281.           result set name identifier is too large.
  6282.  
  6283.       Remedy: Correct the result set name.  Result set names are restricted
  6284.           to being short identifiers (8 characters).
  6285.  
  6286. 02408 RST SRC NICHT VERWENDET
  6287.  
  6288.       Reason: This is error code is currently not used by the SQLBase system.
  6289.  
  6290.       Remedy: None.  This error code should never occur.  If you get this
  6291.           error, contact your local Gupta Technologies certified
  6292.           technical support center.
  6293.  
  6294. 02409 RST PER NICHT VERWENDET
  6295.  
  6296.       Reason: This is error code is currently not used by the SQLBase system.
  6297.  
  6298.       Remedy: None.  This error code should never occur.  If you get this
  6299.           error, contact your local Gupta Technologies certified
  6300.           technical support center.
  6301.  
  6302. 02410 RST PNA Vorheriger Filter ist nicht verfⁿgbar
  6303.  
  6304.       Reason: Cannot perform the undo (sqlurs) operation because the previous
  6305.           result set is not available.
  6306.  
  6307.       Remedy: None.  The previous result may not be available because this was
  6308.           the first result set (no previous select in this restriction
  6309.           mode session) or because the user is attempting to undo more
  6310.           than one time without a subsequent select operation.  Undo
  6311.           operations are not nestable, that is, you can go back to a
  6312.           previous result set but not back before the previous.  The
  6313.           system only maintains the most previously used result set.
  6314.  
  6315. 02411 RST CRS Kein Speicherplatz mehr auf Datenbank-Computer (RST CRS)
  6316.  
  6317.       Reason: Not enough memory at the database engine to perform the
  6318.           requested task.
  6319.  
  6320.       Remedy: Check available memory at the database computer.    Attempt to
  6321.           make more memory available.  To make more memory available for
  6322.           the database engine, you can reduce size of the CACHE.
  6323.  
  6324. 02412 RST TMT Zuviele Tabellen in Ergebnismenge
  6325.  
  6326.       Reason: Too many table form the result set.
  6327.  
  6328.       Remedy: Modify the SQL statement to use fewer tables.
  6329.  
  6330. 02413 RST QNS Ergebnismengen-Restriktionsmodus wird in dieser Abfrage nicht unterstⁿtzt
  6331.  
  6332.       Reason: Virtual tables are not allowed in restriction mode.
  6333.  
  6334.       Remedy: None.  The query is not supported in restriction mode.
  6335.  
  6336. 02414 RST OBY ORDER BY-Befehl kann nicht verwendet werden, wenn die Ergebnismenge der vorigen Abfrage verwendet wird
  6337.  
  6338.       Reason: ORDER BY cannot be used when using the result set of a previous
  6339.           query in restriction mode.
  6340.  
  6341.       Remedy: None.  ORDER BY cannot be used when using the result set of a
  6342.           previous query in restriction mode.  Under restriction mode, the
  6343.           rows come from the previous result set in the order of the
  6344.           previous result set.
  6345.  
  6346.  
  6347. The errors documented in this section of the Error Guide are for errors that
  6348. relate to database server operation.
  6349.  
  6350. 02501 SRV NPA Kein Proze▀ verfⁿgbar
  6351.  
  6352.       Reason: The USER configuration parameter specifies how many processses
  6353.           are allocated by the database server when starting up and the
  6354.           database server has run out of available processes.
  6355.  
  6356.       Remedy: Bring the database server down and restart it after increasing
  6357.           the USER configuration parameter.  The USER keyword specifies
  6358.           the maximum number of clients that can connect to the database
  6359.           server simultaneously.  The default setting is 128 users.  The
  6360.           maximum setting is 255 users.  This keyword is not relevant
  6361.           under OS/2.
  6362.  
  6363. 02502 SRV INE NUR INTERN VERWENDET: Interner Fehler (SRV INE)
  6364.  
  6365.       Reason: This is error is only used internally by the SQLBase system.
  6366.  
  6367.       Remedy: None.  This error code should never occur.  If you get this
  6368.           error, contact your local Gupta Technologies certified
  6369.           technical support center.
  6370.  
  6371. 02503 SRV OOS Server kann fⁿr weitere Sitzungen nicht verwendet werden
  6372.  
  6373.       Reason: The database server or gateway has run short of network
  6374.           sessions.
  6375.  
  6376.       Remedy: Bring down the database server or gateway and verify that the
  6377.           network has been configured with enough sessions and commands to
  6378.           support the desired number of users.
  6379.  
  6380. 02504 SRV DMO NICHT VERWENDET
  6381.  
  6382.       Reason: This is error code is currently not used by the SQLBase system.
  6383.  
  6384.       Remedy: None.  This error code should never occur.  If you get this
  6385.           error, contact your local Gupta Technologies certified
  6386.           technical support center.
  6387.  
  6388. 02505 SRV NAN Installation eines doppelten DBNAME
  6389.  
  6390.       Reason: The database server is attempting to install a new database
  6391.           name in the database name table and the name already exists.
  6392.  
  6393.       Remedy: None.  Database names cannot be duplicated on the same network.
  6394.           The same database name is allowed locally on a workstation and
  6395.           again on the network using DBXCOMBO.
  6396.  
  6397. 02506 SRV INN Ungⁿltiger DBNAME zum installieren
  6398.  
  6399.       Reason: The database server is attempting to install a new database name
  6400.           in the database name table and it has been determined that the
  6401.           specified database name is invalid.
  6402.  
  6403.       Remedy: Correct database name.  Database names can only be eight
  6404.           characters in length.
  6405.  
  6406. 02507 SRV CIS Servername kann nicht installiert werden
  6407.  
  6408.       Reason: The system cannot install the specified server name.
  6409.  
  6410.       Remedy: Verify that the server being installed does not already exist
  6411.           on the network.
  6412.  
  6413. 02508 SRV TMO NUR INTERN VERWENDET: Zeitsperre
  6414.  
  6415.       Reason: This is error is only used internally by the SQLBase system.
  6416.  
  6417.       Remedy: None.  This error code should never occur.  If you get this
  6418.           error, contact your local Gupta Technologies certified
  6419.           technical support center.
  6420.  
  6421. 02509 SRV OOM Kein Speicherplatz mehr auf Datenbank-Computer (SRV OOM)
  6422.  
  6423.       Reason: Not enough memory at the database engine to perform the
  6424.           requested task.
  6425.  
  6426.       Remedy: Check available memory at the database computer.    Attempt to
  6427.           make more memory available.  To make more memory available for
  6428.           the database engine, you can reduce size of the CACHE.
  6429.  
  6430. 02510 SRV SNM NICHT VERWENDET
  6431.  
  6432.       Reason: This is error code is currently not used by the SQLBase system.
  6433.  
  6434.       Remedy: None.  This error code should never occur.  If you get this
  6435.           error, contact your local Gupta Technologies certified
  6436.           technical support center.
  6437.  
  6438. 02511 SRV IPW NICHT VERWENDET
  6439.  
  6440.       Reason: This is error code is currently not used by the SQLBase system.
  6441.  
  6442.       Remedy: None.  This error code should never occur.  If you get this
  6443.           error, contact your local Gupta Technologies certified
  6444.           technical support center.
  6445.  
  6446. 02512 SRV ACD NICHT VERWENDET
  6447.  
  6448.       Reason: This is error code is currently not used by the SQLBase system.
  6449.  
  6450.       Remedy: None.  This error code should never occur.  If you get this
  6451.           error, contact your local Gupta Technologies certified
  6452.           technical support center.
  6453.  
  6454. 02513 SRV IDP Ungⁿltige Datenbankproze▀nummer
  6455.  
  6456.       Reason: Attempting to cancel a database process and the specified
  6457.           database process number is invalid.
  6458.  
  6459.       Remedy: Correct the database process number.
  6460.  
  6461. 02514 SRV PDE Dieser Proze▀ existiert nicht
  6462.  
  6463.       Reason: Attempting to cancel a database process and the specified
  6464.           database process does not exist.
  6465.  
  6466.       Remedy: Correct the database process number.
  6467.  
  6468. 02515 SRV CCL Protokolldatei kann nicht angelegt werden
  6469.  
  6470.       Reason: Attempting to open an existing file and a failure has occurred.
  6471.  
  6472.       Remedy: Determine and correct the cause of the open file failure.
  6473.           Verify that the specified file exists.  Verify the number of
  6474.           files allowed open for the operating system permits the
  6475.           additional file, that is, check the FILES= configuration
  6476.           parameter setting.
  6477.  
  6478. 02516 SRV UCA Server wurde vom Operator trotz aktiver Verbindungen deaktiviert
  6479.  
  6480.       Reason: The database server is being cancelled by an operator and active
  6481.           connections exist.
  6482.  
  6483.       Remedy: None.  All active transactions will be rolled back and all
  6484.           connected users will be disconnected.
  6485.  
  6486. 02517 SRV DNB Datenbankname ist zu lang
  6487.  
  6488.       Reason: A specified database name exceeds 8 characters.
  6489.  
  6490.       Remedy: Correct the specified database name.
  6491.  
  6492. 02518 SRV NLF NICHT VERWENDET
  6493.  
  6494.       Reason: This is error code is currently not used by the SQLBase system.
  6495.  
  6496.       Remedy: None.  This error code should never occur.  If you get this
  6497.           error, contact your local Gupta Technologies certified
  6498.           technical support center.
  6499.  
  6500. 02519 SRV IDN Ungⁿltiger Datenbankname
  6501.  
  6502.       Reason: A specified database name is invalid.
  6503.  
  6504.       Remedy: Correct the invalid database name.
  6505.  
  6506. 02520 SRV MXU Maximale Benutzeranzahl wurde ⁿberschritten
  6507.  
  6508.       Reason: The USER configuration parameter specifies how many users are
  6509.           allowed by the database server when starting up and the database
  6510.           server has run out of available users.
  6511.  
  6512.       Remedy: Bring the database server down and restart it after increasing
  6513.           the USER configuration parameter.  The USER keyword specifies
  6514.           the maximum number of clients that can connect to the database
  6515.           server simultaneously.  The default setting is 128 users.  The
  6516.           maximum setting is 255 users.  This keyword is not relevant
  6517.           under OS/2.
  6518.  
  6519. 02521 SRV NNO NICHT VERWENDET
  6520.  
  6521.       Reason: This is error code is currently not used by the SQLBase system.
  6522.  
  6523.       Remedy: None.  This error code should never occur.  If you get this
  6524.           error, contact your local Gupta Technologies certified
  6525.           technical support center.
  6526.  
  6527. 02522 SRV MXC Maximale Anzahl an Clients wurde ⁿberschritten
  6528.  
  6529.       Reason: The maximum number of clients allowed for this database server
  6530.           or gateway have been exceeded.
  6531.  
  6532.       Remedy: None.  This version of the database server or gateway is
  6533.           restricted in the number of clients allowed.
  6534.  
  6535. 02523 SRV PLV AktivitΣtsprotokoll-Druckebene mu▀ zwischen 0 und 4 liegen
  6536.  
  6537.       Reason: Attempting to set the activity log print level and an invalid
  6538.           print level has been specified.
  6539.  
  6540.       Remedy: Correct the activity log print level.  Valid print levels are 0,
  6541.           1, 2, 3, or 4.
  6542.  
  6543. 02524 SRV DBA Fⁿr diese Operation werden DBA-Rechte ben÷tigt
  6544.  
  6545.       Reason: The setting of this server parameter requires DBA authority.
  6546.  
  6547.       Remedy: None.  DBA authority is required to perform this operation.
  6548.  
  6549. 02525 SRV ALG Name der AktivitΣtsprotokolldatei ist zu lang
  6550.  
  6551.       Reason: Attempting to set an activity log file name and the specified
  6552.           file name is too long.
  6553.  
  6554.       Remedy: Correct the activity log file name.  A fully-qualified activity
  6555.           log file name cannot exceed 128 characters.
  6556.  
  6557. 02526 SRV CID Die Datenbank darf nicht den selben Namen wie der Server haben
  6558.  
  6559.       Reason: The server name as a database name is reserved for  connecting
  6560.           to the MAIN database.
  6561.  
  6562.       Remedy: Use a server name different from the database name  of  use  a
  6563.           database name different from the database name.
  6564.  
  6565. 02527 SRV MDN Datenbankname MAIN wurde im Netz gefunden
  6566.  
  6567.       Reason: When attempting to install the server name as a database    name
  6568.           on the network it was found that    the  database  name  already
  6569.           existing on another server on the network.
  6570.  
  6571.       Remedy: Use an alternate server  name  or  deinstall  the  conflicting
  6572.           database.
  6573.  
  6574. 02550 SRV XER Back-end lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6575.  
  6576.       Reason: This error is currently undocumented.
  6577.  
  6578.       Remedy: Contact your local Gupta Technologies certified technical
  6579.           support center for assistance.
  6580.  
  6581. 02551 SRV X51 SQLBase lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6582.  
  6583.       Reason: This error is currently undocumented.
  6584.  
  6585.       Remedy: Contact your local Gupta Technologies certified technical
  6586.           support center for assistance.
  6587.  
  6588. 02552 SRV X52 DB2 lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6589.  
  6590.       Reason: This error is currently undocumented.
  6591.  
  6592.       Remedy: Contact your local Gupta Technologies certified technical
  6593.           support center for assistance.
  6594.  
  6595. 02553 SRV X53 IBM OS/2 Extended Edition lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6596.  
  6597.       Reason: This error is currently undocumented.
  6598.  
  6599.       Remedy: Contact your local Gupta Technologies certified technical
  6600.           support center for assistance.
  6601.  
  6602. 02554 SRV X54 Oracle lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6603.  
  6604.       Reason: This error is currently undocumented.
  6605.  
  6606.       Remedy: Contact your local Gupta Technologies certified technical
  6607.           support center for assistance.
  6608.  
  6609. 02555 SRV X55 Informix lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6610.  
  6611.       Reason: This error is currently undocumented.
  6612.  
  6613.       Remedy: Contact your local Gupta Technologies certified technical
  6614.           support center for assistance.
  6615.  
  6616. 02556 SRV X56 Netware SQL lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6617.  
  6618.       Reason: This error is currently undocumented.
  6619.  
  6620.       Remedy: Contact your local Gupta Technologies certified technical
  6621.           support center for assistance.
  6622.  
  6623. 02557 SRV X57 IBM AS/400 SQL/400 lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6624.  
  6625.       Reason: This error is currently undocumented.
  6626.  
  6627.       Remedy: Contact your local Gupta Technologies certified technical
  6628.           support center for assistance.
  6629.  
  6630. 02558 SRV X58 Sybase SQL Server lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6631.  
  6632.       Reason: This error is currently undocumented.
  6633.  
  6634.       Remedy: Contact your local Gupta Technologies certified technical
  6635.           support center for assistance.
  6636.  
  6637. 02559 SRV X59 HP Allbase Server lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6638.  
  6639.       Reason: This error is currently undocumented.
  6640.  
  6641.       Remedy: Contact your local Gupta Technologies certified technical
  6642.           support center for assistance.
  6643.  
  6644. 02560 SRV X60 Teradata lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6645.  
  6646.       Reason: This error is currently undocumented.
  6647.  
  6648.       Remedy: Contact your local Gupta Technologies certified technical
  6649.           support center for assistance.
  6650.  
  6651. 02561 SRV X61 Rdb lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6652.  
  6653.       Reason: This error is currently undocumented.
  6654.  
  6655.       Remedy: Contact your local Gupta Technologies certified technical
  6656.           support center for assistance.
  6657.  
  6658. 02562 SRV X62 Tandem lieferte eine Fehlermeldung. Weitere Informationen sind verfⁿgbar
  6659.  
  6660.       Reason: This error is currently undocumented.
  6661.  
  6662.       Remedy: Contact your local Gupta Technologies certified technical
  6663.           support center for assistance.
  6664.  
  6665. 02563 SRV X63 IBM SQL/DS Fehler aufgetaucht. Weitere Informationen sind verfⁿgbar
  6666.  
  6667.       Reason: Backend specific error. A SQLBase equivalent error code
  6668.           could not be mapped.
  6669.  
  6670.       Remedy: Call extended error processing to retrieve more details.
  6671.  
  6672. 02564 SRV X64 SNI SESAM Fehler aufgetaucht. Weitere Informationen sind verfⁿgbar
  6673.  
  6674.       Reason: Backend specific error. A SQLBase equivalent error code
  6675.           could not be mapped.
  6676.  
  6677.       Remedy: Call extended error processing to retrieve more details.
  6678.  
  6679. 02565 SRV X65 Ingres Fehler aufgetaucht. Weitere Informationen sind verfⁿgbar
  6680.  
  6681.       Reason: Backend specific error. A SQLBase equivalent error code
  6682.           could not be mapped.
  6683.  
  6684.       Remedy: Call extended error processing to retrieve more details.
  6685.  
  6686. 02566 SRV X66 ODBC Fehler aufgetaucht. Weitere Informationen sind verfⁿgbar
  6687.  
  6688.       Reason: Backend specific error. A SQLBase equivalent error code
  6689.           could not be mapped.
  6690.  
  6691.       Remedy: Call extended error processing to retrieve more details.
  6692.  
  6693. 02567 SRV X67 Dbase Fehler aufgetaucht. Weitere Informationen sind verfⁿgbar
  6694.  
  6695.       Reason: Backend specific error. A SQLBase equivalent error code
  6696.           could not be mapped.
  6697.  
  6698.       Remedy: Call extended error processing to retrieve more details.
  6699.  
  6700. 02568 SRV X68 SNI DDB4 Fehler aufgetaucht. Weitere Informationen sind verfⁿgbar
  6701.  
  6702.       Reason: Backend specific error. A SQLBase equivalent error code
  6703.           could not be mapped.
  6704.  
  6705.       Remedy: Call extended error processing to retrieve more details.
  6706.  
  6707. 02569 SRV X69 Fujitsu Fehler aufgetaucht. Weitere Informationen sind verfⁿgbar
  6708.  
  6709.       Reason: Backend specific error. A SQLBase equivalent error code
  6710.           could not be mapped.
  6711.  
  6712.       Remedy: Call extended error processing to retrieve more details.
  6713.  
  6714. 02570 SRV X70 Cincom SUPRA Fehler aufgetaucht. Weitere Informationen sind verfⁿgbar
  6715.  
  6716.       Reason: Backend specific error. A SQLBase equivalent error code
  6717.           could not be mapped.
  6718.  
  6719.       Remedy: Call extended error processing to retrieve more details.
  6720.  
  6721. 02571 SRV X71 CCA Model 204 Fehler aufgetaucht. Weitere Informationen sind verfⁿgbar
  6722.  
  6723.       Reason: Backend specific error. A SQLBase equivalent error code
  6724.           could not be mapped.
  6725.  
  6726.       Remedy: Call extended error processing to retrieve more details.
  6727.  
  6728. 02572 SRV X72 Apple DAL Fehler aufgetaucht. Weitere Informationen sind verfⁿgbar
  6729.  
  6730.       Reason: Backend specific error. A SQLBase equivalent error code
  6731.           could not be mapped.
  6732.  
  6733.       Remedy: Call extended error processing to retrieve more details.
  6734.  
  6735. 02573 SRV X73 Teradata ShareBase Fehler aufgetaucht. Weitere Informationen sind                   verfⁿgbar
  6736.  
  6737.       Reason: Backend specific error. A SQLBase equivalent error code
  6738.           could not be mapped.
  6739.  
  6740.       Remedy: Call extended error processing to retrieve more details.
  6741.  
  6742. 02574 SRV X74 Informix On-Line Ver4.1 Fehler aufgetaucht. Weitere Informationen sind               verfⁿgbar
  6743.  
  6744.       Reason: Backend specific error. A SQLBase equivalent error code
  6745.           could not be mapped.
  6746.  
  6747.       Remedy: Call extended error processing to retrieve more details.
  6748.  
  6749. 02599 SRV X99 SQLHost App Services Fehler aufgetaucht. Weitere Informationen sind                   verfⁿgbar
  6750.  
  6751.       Reason: Backend specific error. A SQLBase equivalent error code
  6752.           could not be mapped.
  6753.  
  6754.       Remedy: Call extended error processing to retrieve more details.
  6755.  
  6756.  
  6757. The errors documented in this section of the Error Guide are for errors that
  6758. relate to remote database server interface.
  6759.  
  6760. 02601 RSI NAS Keine Sitzungen verfⁿgbar
  6761.  
  6762.       Reason: The database server has run short of network sessions.
  6763.  
  6764.       Remedy: Bring down the database server and verify that the network has
  6765.           been configured with enough sessions and commands to support the
  6766.           desired number of users.
  6767.  
  6768. 02602 RSI CAM Kein Speicherplatz mehr auf Datenbank-Computer (RSI CAM)
  6769.  
  6770.       Reason: Not enough memory at the database engine to perform the
  6771.           requested task.
  6772.  
  6773.       Remedy: Check available memory at the database computer.    Attempt to
  6774.           make more memory available.  To make more memory available for
  6775.           the database engine, you can reduce size of the CACHE.
  6776.  
  6777.  
  6778. The errors documented in this section of the Error Guide are for errors that
  6779. relate to database server scheduler.
  6780.  
  6781. 02701 SCD IST NICHT VERWENDET
  6782.  
  6783.       Reason: This is error code is currently not used by the SQLBase system.
  6784.  
  6785.       Remedy: None.  This error code should never occur.  If you get this
  6786.           error, contact your local Gupta Technologies certified
  6787.           technical support center.
  6788.  
  6789. 02702 SCD NSA NICHT VERWENDET
  6790.  
  6791.       Reason: This is error code is currently not used by the SQLBase system.
  6792.  
  6793.       Remedy: None.  This error code should never occur.  If you get this
  6794.           error, contact your local Gupta Technologies certified
  6795.           technical support center.
  6796.  
  6797. 02703 SCD NES Kein Speicherplatz mehr auf Datenbank-Computer (SCD NES)
  6798.  
  6799.       Reason: Not enough memory at the database engine to perform the
  6800.           requested task.
  6801.  
  6802.       Remedy: Check available memory at the database computer.    Attempt to
  6803.           make more memory available.  To make more memory available for
  6804.           the database engine, you can reduce size of the CACHE.
  6805.  
  6806. 02704 SCD NEM NICHT VERWENDET
  6807.  
  6808.       Reason: This is error code is currently not used by the SQLBase system.
  6809.  
  6810.       Remedy: None.  This error code should never occur.  If you get this
  6811.           error, contact your local Gupta Technologies certified
  6812.           technical support center.
  6813.  
  6814. 02705 SCD NSD Schwerer SQLBase-Systemfehler (SCD NSD)
  6815.  
  6816.       Reason: This is a Fatal Error.
  6817.  
  6818.       Remedy: Resaon#3
  6819.  
  6820. 02706 SCD SNI NUR INTERN VERWENDET: Scheduler wurde nicht gestartet
  6821.  
  6822.       Reason: This is error is only used internally by the SQLBase system.
  6823.           A scheduler function (other than scdInit) was made before the
  6824.           scheduler was initialized via scdInit.
  6825.  
  6826.       Remedy: None.  This error code should never occur in an application
  6827.           program. scdInit must be the first scheduler function called.
  6828.           Call scdInit before making any other scheduler calls.  If you
  6829.           get this error, contact your local Gupta Technologies certified
  6830.           technical support center.
  6831.  
  6832. 02707 SCD AIN NUR INTERN VERWENDET: Scheduler wurde bereits gestartet
  6833.  
  6834.       Reason: This is error is only used internally by the SQLBase system.
  6835.           scdInit was called more than once
  6836.  
  6837.       Remedy: None.  This error code should never occur in an application
  6838.           program. scdInit must be the first scheduler function call and
  6839.           it must never be called more than once.  If you get this error,
  6840.           contact your local Gupta Technologies certified technical
  6841.           support center.
  6842.  
  6843. 02708 SCD OOM Kein Speicherplatz mehr auf Datenbank-Computer (SCD OOM)
  6844.  
  6845.       Reason: Not enough memory at the database engine to perform the
  6846.           requested task.
  6847.  
  6848.       Remedy: Check available memory at the database computer.    Attempt to
  6849.           make more memory available.  To make more memory available for
  6850.           the database engine, you can reduce size of the CACHE.
  6851.  
  6852. 02709 SCD CFP NUR INTERN VERWENDET: Proze▀ wurde nicht gefunden
  6853.  
  6854.       Reason: This is error is only used internally by the SQLBase system.
  6855.           scdPost was called with an invalid process number.
  6856.  
  6857.       Remedy: None.  This error code should never occur in an application
  6858.           program.    scdPost may only be called with a process number of a
  6859.           currently valid process.    If you get this error, contact your
  6860.           local Gupta Technologies certified technical support center.
  6861.  
  6862. 02710 SCD PIU NUR INTERN VERWENDET: Proze▀nummer wird bereits verwendet
  6863.  
  6864.       Reason: This is error is only used internally by the SQLBase system.
  6865.           scdCreate was called with a process number that is already in
  6866.           use.
  6867.  
  6868.       Remedy: None.  This error code should never occur in an application
  6869.           program.    When specifying a process number to scdCreate, the
  6870.           process number given must specify a process that is not
  6871.           currently valid.    If you get this error, contact your local
  6872.           Gupta Technologies certified technical support center.
  6873.  
  6874. 02711 SCD PIB NUR INTERN VERWENDET: Proze▀ ist blockiert
  6875.  
  6876.       Reason: This is error is only used internally by the SQLBase system.
  6877.           scdPost was called with the number of a process that is not
  6878.           waiting on a scdSleep (such as a wait on a semaphore).
  6879.  
  6880.       Remedy: None.  This error code should never occur in an application
  6881.           program.    scdPost can only be called on a process that is asleep
  6882.           via a call to scdSleep.  If you get this error, contact your
  6883.           local Gupta Technologies certified technical support center.
  6884.  
  6885. 02712 SCD NCP NUR INTERN VERWENDET: Kein aktueller Proze▀
  6886.  
  6887.       Reason: This is error is only used internally by the SQLBase system.
  6888.  
  6889.       Remedy: None.  This error code should never occur.  If you get this
  6890.           error, contact your local Gupta Technologies certified
  6891.           technical support center.
  6892.  
  6893. 02713 SCD CWQ NICHT VERWENDET
  6894.  
  6895.       Reason: This is error code is currently not used by the SQLBase system.
  6896.  
  6897.       Remedy: None.  This error code should never occur.  If you get this
  6898.           error, contact your local Gupta Technologies certified
  6899.           technical support center.
  6900.  
  6901. 02714 SCD CRQ NICHT VERWENDET
  6902.  
  6903.       Reason: This is error code is currently not used by the SQLBase system.
  6904.  
  6905.       Remedy: None.  This error code should never occur.  If you get this
  6906.           error, contact your local Gupta Technologies certified
  6907.           technical support center.
  6908.  
  6909. 02715 SCD CCQ NICHT VERWENDET
  6910.  
  6911.       Reason: This is error code is currently not used by the SQLBase system.
  6912.  
  6913.       Remedy: None.  This error code should never occur.  If you get this
  6914.           error, contact your local Gupta Technologies certified
  6915.           technical support center.
  6916.  
  6917. 02716 SCD CCT Kein Speicherplatz mehr auf Datenbank-Computer (SCD CCT)
  6918.  
  6919.       Reason: Not enough memory at the database engine to perform the
  6920.           requested task.
  6921.  
  6922.       Remedy: Check available memory at the database computer.    Attempt to
  6923.           make more memory available.  To make more memory available for
  6924.           the database engine, you can reduce size of the CACHE.
  6925.  
  6926. 02717 SCD CCS NICHT VERWENDET
  6927.  
  6928.       Reason: This is error code is currently not used by the SQLBase system.
  6929.  
  6930.       Remedy: None.  This error code should never occur.  If you get this
  6931.           error, contact your local Gupta Technologies certified
  6932.           technical support center.
  6933.  
  6934. 02718 SCD ISM NICHT VERWENDET
  6935.  
  6936.       Reason: This is error code is currently not used by the SQLBase system.
  6937.  
  6938.       Remedy: None.  This error code should never occur.  If you get this
  6939.           error, contact your local Gupta Technologies certified
  6940.           technical support center.
  6941.  
  6942. 02719 SCD CSS NICHT VERWENDET
  6943.  
  6944.       Reason: This is error code is currently not used by the SQLBase system.
  6945.  
  6946.       Remedy: None.  This error code should never occur.  If you get this
  6947.           error, contact your local Gupta Technologies certified
  6948.           technical support center.
  6949.  
  6950. 02720 SCD SWF NICHT VERWENDET
  6951.  
  6952.       Reason: This is error code is currently not used by the SQLBase system.
  6953.  
  6954.       Remedy: None.  This error code should never occur.  If you get this
  6955.           error, contact your local Gupta Technologies certified
  6956.           technical support center.
  6957.  
  6958. 02721 SCD SRF NICHT VERWENDET
  6959.  
  6960.       Reason: This is error code is currently not used by the SQLBase system.
  6961.  
  6962.       Remedy: None.  This error code should never occur.  If you get this
  6963.           error, contact your local Gupta Technologies certified
  6964.           technical support center.
  6965.  
  6966. 02722 SCD STC NUR INTERN VERWENDET: Semaphortyp (Signaltyp)-Konflikt
  6967.  
  6968.       Reason: This inappropriate use of semaphore scheduler call is an
  6969.           internal error of the SQLBase system.
  6970.  
  6971.       Remedy: None.  This error code should never occur in an application
  6972.           program.    There are two type of semaphores and two sets of
  6973.           functions that deal with them, they cannot be mixed.  If you
  6974.           get this error, contact your local Gupta Technologies certified
  6975.           technical support center.
  6976.  
  6977. 02723 SCD TMO NUR INTERN VERWENDET: Zeit wurde ⁿberschritten
  6978.  
  6979.       Reason: This is error is only used internally by the SQLBase system.
  6980.           A scdSemRequest with a timeout exceeded the timeout value
  6981.           without the requested semaphore being cleared.
  6982.  
  6983.       Remedy: None.  This error code should never occur.  If you get this
  6984.           error, contact your local Gupta Technologies certified
  6985.           technical support center.
  6986.  
  6987. 02724 SCD IDV NICHT VERWENDET
  6988.  
  6989.       Reason: This is error code is currently not used by the SQLBase system.
  6990.  
  6991.       Remedy: None.  This error code should never occur.  If you get this
  6992.           error, contact your local Gupta Technologies certified
  6993.           technical support center.
  6994.  
  6995. 02725 SCD CCM NICHT VERWENDET
  6996.  
  6997.       Reason: This is error code is currently not used by the SQLBase system.
  6998.  
  6999.       Remedy: None.  This error code should never occur.  If you get this
  7000.           error, contact your local Gupta Technologies certified
  7001.           technical support center.
  7002.  
  7003. 02726 SCD CCP Kein Speicherplatz mehr auf Datenbank-Computer (SCD CCP)
  7004.  
  7005.       Reason: Not enough memory at the database engine to perform the
  7006.           requested task.
  7007.  
  7008.       Remedy: Check available memory at the database computer. Attempt to
  7009.           make more memory available.  To make more memory available for
  7010.           the database engine, you can reduce size of the CACHE.
  7011.  
  7012. 02727 SCD CST Kann Operating System Thread nicht kreieren
  7013.  
  7014.       Reason: This error code is when running out of operating system
  7015.           resources.
  7016.  
  7017.       Remedy: Shut down the database server whenever possible.    Consult
  7018.           System Administrator to increase the system resources and
  7019.           re-start database server.  If you get this error again,
  7020.           contact your local Gupta Technologies certified technical
  7021.           support center.
  7022.  
  7023. 02728 SCD TMD Kann keinen Thread kreieren, da Thread Manager inaktiv
  7024.  
  7025.       Reason: This error is caused by pressing ESC from server while there
  7026.           are still other users connected to the server.  The server
  7027.           is going to be brought done abnormally.  This error is returned
  7028.           as a result of thread manager being disabled to prepare the
  7029.           abnormal shutdown.
  7030.  
  7031.       Remedy: Do not bring server down while other users still connected.
  7032.  
  7033.  
  7034. The errors documented in this section of the Error Guide are for errors that
  7035. relate to the remote database server interface for Microsoft Windows.
  7036.  
  7037. 02801 RSW SAC Sitzung wurde bereits angelegt
  7038.  
  7039.       Reason: This error is currently undocumented.
  7040.  
  7041.       Remedy: Contact your local Gupta Technologies certified technical
  7042.           support center for assistance.
  7043.  
  7044. 02802 RSW NEM Kein Speicherplatz mehr auf Datenbank-Computer (RSW NEM)
  7045.  
  7046.       Reason: Not enough memory at the database engine to perform the
  7047.           requested task.
  7048.  
  7049.       Remedy: Check available memory at the database computer.    Attempt to
  7050.           make more memory available.  To make more memory available for
  7051.           the database engine, you can reduce size of the CACHE.
  7052.  
  7053. 02803 RSW IEN Ungⁿltige Eingabe
  7054.  
  7055.       Reason: This error is currently undocumented.
  7056.  
  7057.       Remedy: Contact your local Gupta Technologies certified technical
  7058.           support center for assistance.
  7059.  
  7060. 02804 RSW TNI Aufgabe wurde nicht gestartet
  7061.  
  7062.       Reason: This problem may have occurred because the sqlini() function
  7063.           call is not being called before a connect function call like
  7064.           sqlcnc or sqlcnc may be called after calling sqldon without
  7065.           another subsequent sqlini function call.
  7066.  
  7067.       Remedy: Correct the application program.    The sequence of events should
  7068.           be calling sqlini() first followed by any and all other sql
  7069.           functions and finally terminating with a sqldon function call.
  7070.  
  7071. 02805 RSW TDE NICHT VERWENDET
  7072.  
  7073.       Reason: This is error code is currently not used by the SQLBase system.
  7074.  
  7075.       Remedy: None.  This error code should never occur.  If you get this
  7076.           error, contact your local Gupta Technologies certified
  7077.           technical support center.
  7078.  
  7079. 02806 RSW TAI Aufgabe wurde bereits gestartet
  7080.  
  7081.       Reason: This error is currently undocumented.
  7082.  
  7083.       Remedy: Contact your local Gupta Technologies certified technical
  7084.           support center for assistance.
  7085.  
  7086. 02807 RSW NAS Es sind keine Slots verfⁿgbar
  7087.  
  7088.       Reason: Whenever a Windows program calls the SQLBase API for the first
  7089.           time, it gets allocated a slot where a pointer to its data it
  7090.           kept.  Before the Microsoft Windows application terminates, its
  7091.           suppose to call sqldon() to free the slot.  The current
  7092.           Microsoft Windows program is probably failing to call sqldon().
  7093.  
  7094.       Remedy: Call sqldon() before exiting the Microsoft Windows application
  7095.           program.
  7096.  
  7097. 02808 RSW SNE Diese Sitzung existiert nicht
  7098.  
  7099.       Reason: This error is currently undocumented.
  7100.  
  7101.       Remedy: Contact your local Gupta Technologies certified technical
  7102.           support center for assistance.
  7103.  
  7104. 02809 RSW ICB Ungⁿltiger Cursor-Pufferzeiger
  7105.  
  7106.       Reason: This error is currently undocumented.
  7107.  
  7108.       Remedy: Contact your local Gupta Technologies certified technical
  7109.           support center for assistance.
  7110.  
  7111. 02810 RSW SCT Sitzung wurde geschlossen/beendet
  7112.  
  7113.       Reason: This error is returned to the client computer when the cursor is
  7114.           tied to a network session that no longer exists.    Once you get
  7115.           this error on a cursor, subsequent tries will also yield the
  7116.           same error.  Other cursors sharing the same network session will
  7117.           get this error also.  If applications are exiting without
  7118.           disconnecting all their cursors, the database server can confuse
  7119.           a new instance of an application with an old one.  If the new
  7120.           and old instance have the same MS Windows task id, the database
  7121.           server might tell the new instance to use a network session
  7122.           created by the old instance.
  7123.  
  7124.       Remedy: Check if some other error occurred before receiving this error.
  7125.           Other errors that may have gone undetected may have caused this
  7126.           error.  Also check that all cursors are disconnected before
  7127.           terminating each run of an application.  This can be checked by
  7128.           seeing if there are any session left on the database server
  7129.           screen after running and exiting each application.  Check
  7130.           whether the applications ever terminate in ways where sessions
  7131.           are not disconnected.
  7132.  
  7133. 02811 RSW CFS Sitzung wurde nicht gefunden
  7134.  
  7135.       Reason: This error is currently undocumented.
  7136.  
  7137.       Remedy: Contact your local Gupta Technologies certified technical
  7138.           support center for assistance.
  7139.  
  7140. 02812 RSW INE Schwerer SQLBase-Systemfehler (RSW INE)
  7141.  
  7142.       Reason: This is a Fatal Error.
  7143.  
  7144.       Remedy: Reason#3
  7145.  
  7146. 02813 RSW OOS Keine weiteren Sitzungen vorhanden
  7147.  
  7148.       Reason: This error is currently undocumented.
  7149.  
  7150.       Remedy: Contact your local Gupta Technologies certified technical
  7151.           support center for assistance.
  7152.  
  7153. 02814 RSW CAN Auf Netzwerk kann nicht zugegriffen werden
  7154.  
  7155.       Reason: A network adapter is not present in the computer.
  7156.  
  7157.       Remedy: Verify that this computer is connected to a network and that
  7158.           a network adapter card is properly installed.
  7159.  
  7160. 02815 RSW ICF NICHT VERWENDET
  7161.  
  7162.       Reason: This is error code is currently not used by the SQLBase system.
  7163.  
  7164.       Remedy: None.  This error code should never occur.  If you get this
  7165.           error, contact your local Gupta Technologies certified
  7166.           technical support center.
  7167.  
  7168.  
  7169. The errors documented in this section of the Error Guide are for errors that
  7170. relate to the database server playback utility.
  7171.  
  7172. 02901 PYB CNI Programm kann nicht gestartet werden
  7173.  
  7174.       Reason: Cannot initialize playback program server screen.
  7175.  
  7176.       Remedy: Contact your local Gupta Technologies certified technical
  7177.           support center for assistance.
  7178.  
  7179. 02902 PYB NEM Speicherplatz reicht nicht aus
  7180.  
  7181.       Reason: The playback program is attempting to allocate memory but it
  7182.           cannot find enough available memory.
  7183.  
  7184.       Remedy: Determine why the playback program is short of memory.  Try to
  7185.           make more memory available.
  7186.  
  7187. 02903 PYB COF Netzwerkmeldungsdatei kann nicht ge÷ffnet werden
  7188.  
  7189.       Reason: Cannot open the playback file to replay the messages.
  7190.  
  7191.       Remedy: Correctly identify the playback filename.
  7192.  
  7193. 02904 PYB IVF Ungⁿltige Netzwerkmeldungsdatei
  7194.  
  7195.       Reason: The playback file that was opened is invalid and not a netlog
  7196.           message file.
  7197.  
  7198.       Remedy: Correctly identify the playback filename.
  7199.  
  7200. 02905 PYB MFC Netzwerkmeldungsdatei ist fehlerhaft
  7201.  
  7202.       Reason: The playback program has read message from the netlog file and
  7203.           determined that the message is corrupted.
  7204.  
  7205.       Remedy: None.  The playback netlog file is not usable.
  7206.  
  7207. 02906 PYB EOF Ende der Datei
  7208.  
  7209.       Reason: The playback program has determined that the netlog message
  7210.           file has been exhausted and no message remain to be read.
  7211.  
  7212.       Remedy: None. Informational only.
  7213.  
  7214. 02907 PYB PEF Vorzeitiges Ende der Datei
  7215.  
  7216.       Reason: The playback program has determined that the netlog message
  7217.           file has prematurely ended.
  7218.  
  7219.       Remedy: Determine why the netlog message file was incomplete.
  7220.  
  7221. 02908 PYB NNN Es ist keine Netzwerkmeldungsdatei in Gebrauch
  7222.  
  7223.       Reason: Attempting a playback program operation and no network message
  7224.           file has been opened.
  7225.  
  7226.       Remedy: Open a playback network message file before attempting a
  7227.           playback operation.
  7228.  
  7229. 02909 PYB CIS BefehlsoberflΣche kann nicht aufgerufen werden
  7230.  
  7231.       Reason: Attempting to escape from the playback program to a DOS command
  7232.           shell but the DOS command shell cannot be invoked.
  7233.  
  7234.       Remedy: Determine why the DOS command shell cannot be invoked.  Try
  7235.           again.
  7236.  
  7237. 02910 PYB INE Interner Fehler
  7238.  
  7239.       Reason: An unexpected internal error has been determined in the
  7240.           playback program.
  7241.  
  7242.       Remedy: Contact your local Gupta Technologies certified technical
  7243.           support center for assistance.
  7244.  
  7245. 02911 PYB NES Schaltung in eine nicht existierende Sitzung
  7246.  
  7247.       Reason: The playback program is attempting to switch to another session
  7248.           but the target session does not exist.
  7249.  
  7250.       Remedy: None.  The netlog message file is not usable.
  7251.  
  7252. 02912 PYB COL Protokolldatei kann nicht ge÷ffnet werden
  7253.  
  7254.       Reason: The playback program is failing in its attempt to open the
  7255.           specified netlog message file.
  7256.  
  7257.       Remedy: Verify that the netlog file name is correctly specified.
  7258.  
  7259. 02913 PYB LNO Protokolldatei ist nicht ge÷ffnet
  7260.  
  7261.       Reason: Attempting to close a netlog message file and the netlog
  7262.           message file is not open.
  7263.  
  7264.       Remedy: None.  You cannot close a netlog message file that is not open.
  7265.  
  7266.  
  7267. The errors documented in this section of the Error Guide are for errors that
  7268. relate to management of configuration parameters.
  7269.  
  7270. 03001 CFM NLD NICHT VERWENDET
  7271.  
  7272.       Reason: This is error code is currently not used by the SQLBase system.
  7273.  
  7274.       Remedy: None.  This error code should never occur.  If you get this
  7275.           error, contact your local Gupta Technologies certified
  7276.           technical support center.
  7277.  
  7278. 03002 CFM NRD NICHT VERWENDET
  7279.  
  7280.       Reason: This is error code is currently not used by the SQLBase system.
  7281.  
  7282.       Remedy: None.  This error code should never occur.  If you get this
  7283.           error, contact your local Gupta Technologies certified
  7284.           technical support center.
  7285.  
  7286. 03003 CFM ICM NICHT VERWENDET
  7287.  
  7288.       Reason: This is error code is currently not used by the SQLBase system.
  7289.  
  7290.       Remedy: None.  This error code should never occur.  If you get this
  7291.           error, contact your local Gupta Technologies certified
  7292.           technical support center.
  7293.  
  7294. 03004 CFM OOM Kein Speicherplatz mehr auf Datenbank-Computer (CFM OOM)
  7295.  
  7296.       Reason: Not enough memory at the database engine to perform the
  7297.           requested task.
  7298.  
  7299.       Remedy: Check available memory at the database computer.    Attempt to
  7300.           make more memory available.  To make more memory available for
  7301.           the database engine, you can reduce size of the CACHE.
  7302.  
  7303. 03005 CFM RBS NICHT VERWENDET
  7304.  
  7305.       Reason: This is error code is currently not used by the SQLBase system.
  7306.  
  7307.       Remedy: None.  This error code should never occur.  If you get this
  7308.           error, contact your local Gupta Technologies certified
  7309.           technical support center.
  7310.  
  7311. 03006 CFM IDN Inkonsistenter Datenbankname
  7312.  
  7313.       Reason: The database system has determined that the database name being
  7314.           installed was prefixed with a "L:" to install a local database
  7315.           and the server number utilized by the system was not zero OR the
  7316.           database name being installed was prefixed with a "R:" to
  7317.           install a remote database and the server number utilized by the
  7318.           system was zero.
  7319.  
  7320.       Remedy: Correct installation of database name.  The "R:" prefix should
  7321.           be used to install on a remove database server with server
  7322.           number greater than zero.  To install a local database use a
  7323.           prefix of "L:" and use a server number of zero.
  7324.  
  7325. 03007 CFM COS Datenbankaufruf kann nicht ge÷ffnet werden
  7326.  
  7327.       Reason: Attempting to install a new database and the database system
  7328.           cannot locate the START.DBS file.
  7329.  
  7330.       Remedy: Verify that the START.DBS file is available.
  7331.  
  7332. 03008 CFM CCD Datenbank kann nicht angelegt werden
  7333.  
  7334.       Reason: Attempting to install a new database and the database system
  7335.           could not create the specified database name.
  7336.  
  7337.       Remedy: Determine why the system could not create the named database
  7338.           file.
  7339.  
  7340. 03009 CFM IRF Fehler beim Starten von Lesen
  7341.  
  7342.       Reason: Attempting to install a new database and the database system
  7343.           could not read from the START.DBS file.
  7344.  
  7345.       Remedy: Determine why the system could not read the START.DBS file.
  7346.  
  7347. 03010 CFM IWF Fehler beim Starten von Schreiben
  7348.  
  7349.       Reason: Attempting to install a new database and the database system
  7350.           could not write to the newly created database file.
  7351.  
  7352.       Remedy: Determine why the system could not write to the newly created
  7353.           database file.
  7354.  
  7355. 03011 CFM DBE Datenbank besteht bereits
  7356.  
  7357.       Reason: Attempting to install a new database and the name database
  7358.           already exists.
  7359.  
  7360.       Remedy: None.  You cannot install a database that already exists.
  7361.  
  7362. 03012 CFM DBN Diese Datenbank existiert nicht
  7363.  
  7364.       Reason: Attempting to install an existing database and the named
  7365.           database does not exist.
  7366.  
  7367.       Remedy: None.  You cannot install an existing database if the existing
  7368.           database does not exist.
  7369.  
  7370. 03013 CFM CRD Verzeichnisliste kann nicht angelegt werden
  7371.  
  7372.       Reason: Attempting to create a directory of listing of all existing and
  7373.           installed databases and the database system could not create
  7374.           the directory listing.
  7375.  
  7376.       Remedy: Contact Gupta Technologies Technical Support.
  7377.  
  7378. 03014 CFM OOH Keine weiteren Handles
  7379.  
  7380.       Reason: Attempting to open more than four remote files at the same time.
  7381.  
  7382.       Remedy: None.  Only four remote files can be opened simultaneously.
  7383.  
  7384. 03015 CFM IVH Ungⁿltiger Handle
  7385.  
  7386.       Reason: The specified file handle is not valid.
  7387.  
  7388.       Remedy: Use a valid file handle returned by opening the file with the
  7389.           sqlmop API function call.
  7390.  
  7391. 03016 CFM COF NICHT VERWENDET
  7392.  
  7393.       Reason: This is error code is currently not used by the SQLBase system.
  7394.  
  7395.       Remedy: None.  This error code should never occur.  If you get this
  7396.           error, contact your local Gupta Technologies certified
  7397.           technical support center.
  7398.  
  7399. 03017 CFM CCF NICHT VERWENDET
  7400.  
  7401.       Reason: This is error code is currently not used by the SQLBase system.
  7402.  
  7403.       Remedy: None.  This error code should never occur.  If you get this
  7404.           error, contact your local Gupta Technologies certified
  7405.           technical support center.
  7406.  
  7407. 03018 CFM CSK NICHT VERWENDET
  7408.  
  7409.       Reason: This is error code is currently not used by the SQLBase system.
  7410.  
  7411.       Remedy: None.  This error code should never occur.  If you get this
  7412.           error, contact your local Gupta Technologies certified
  7413.           technical support center.
  7414.  
  7415. 03019 CFM CDF NICHT VERWENDET
  7416.  
  7417.       Reason: This is error code is currently not used by the SQLBase system.
  7418.  
  7419.       Remedy: None.  This error code should never occur.  If you get this
  7420.           error, contact your local Gupta Technologies certified
  7421.           technical support center.
  7422.  
  7423. 03020 CFM NCN NICHT VERWENDET
  7424.  
  7425.       Reason: This is error code is currently not used by the SQLBase system.
  7426.  
  7427.       Remedy: None.  This error code should never occur.  If you get this
  7428.           error, contact your local Gupta Technologies certified
  7429.           technical support center.
  7430.  
  7431. 03021 CFM REA NICHT VERWENDET
  7432.  
  7433.       Reason: This is error code is currently not used by the SQLBase system.
  7434.  
  7435.       Remedy: None.  This error code should never occur.  If you get this
  7436.           error, contact your local Gupta Technologies certified
  7437.           technical support center.
  7438.  
  7439. 03022 CFM WRI NICHT VERWENDET
  7440.  
  7441.       Reason: This is error code is currently not used by the SQLBase system.
  7442.  
  7443.       Remedy: None.  This error code should never occur.  If you get this
  7444.           error, contact your local Gupta Technologies certified
  7445.           technical support center.
  7446.  
  7447.  
  7448. The errors documented in this section of the Error Guide are for virtual
  7449. screen processing errors.
  7450.  
  7451. 03101 VTS INV NUR INTERN VERWENDET: Ungⁿltige Maskenkennung
  7452.  
  7453.       Reason: This is error is only used internally by the SQLBase system.
  7454.  
  7455.       Remedy: None.  This error code should never occur.  If you get this
  7456.           error, contact your local Gupta Technologies certified
  7457.           technical support center.
  7458.  
  7459. 03102 VTS OOR NUR INTERN VERWENDET: Bereich wurde ⁿberschritten
  7460.  
  7461.       Reason: This is error is only used internally by the SQLBase system.
  7462.  
  7463.       Remedy: None.  This error code should never occur.  If you get this
  7464.           error, contact your local Gupta Technologies certified
  7465.           technical support center.
  7466.  
  7467. 03103 VTS ICT NUR INTERN VERWENDET: Ungⁿltiger Cursortyp
  7468.  
  7469.       Reason: This is error is only used internally by the SQLBase system.
  7470.  
  7471.       Remedy: None.  This error code should never occur.  If you get this
  7472.           error, contact your local Gupta Technologies certified
  7473.           technical support center.
  7474.  
  7475. 03104 VTS CIN NUR INTERN VERWENDET: Starten nicht m÷glich
  7476.  
  7477.       Reason: This is error is only used internally by the SQLBase system.
  7478.  
  7479.       Remedy: None.  This error code should never occur.  If you get this
  7480.           error, contact your local Gupta Technologies certified
  7481.           technical support center.
  7482.  
  7483. 03105 VTS CSR NUR INTERN VERWENDET: Maske kann nicht gespeichert oder wiederhergestellt werden
  7484.  
  7485.       Reason: This is error is only used internally by the SQLBase system.
  7486.  
  7487.       Remedy: None.  This error code should never occur.  If you get this
  7488.           error, contact your local Gupta Technologies certified
  7489.           technical support center.
  7490.  
  7491.  
  7492. The errors documented in this section of the Error Guide are for errors that
  7493. relate to the Online Backup Facilities of the SQLBase database.
  7494.  
  7495. 03201 BKP COD NICHT VERWENDET
  7496.  
  7497.       Reason: This is error code is currently not used by the SQLBase system.
  7498.  
  7499.       Remedy: None.  This error code should never occur.  If you get this
  7500.           error, contact your local Gupta Technologies certified
  7501.           technical support center.
  7502.  
  7503. 03202 BKP BFE Sicherungsdatei besteht bereits
  7504.  
  7505.       Reason: Attempting to perform an online backup without the overwrite
  7506.           option and the backup file already exists.
  7507.  
  7508.       Remedy: Modify the backup filename or invoke the overwrite option.
  7509.  
  7510. 03203 BKP CRB Fehler beim Anlegen der Datei: Sicherungsdatei kann nicht angelegt werden
  7511.  
  7512.       Reason: Attempting to create a file and a failure has occurred.
  7513.  
  7514.       Remedy: Determine and correct the cause of the create failure.  Run a
  7515.           check disk utility (CHKDSK) for the current operating system to
  7516.           verify the status of disk.  Verify that sufficient disk space is
  7517.           available and verify that the number of files allowed open for
  7518.           the operating system permits the additional file, that is, check
  7519.           the FILES= configuration parameter setting.
  7520.  
  7521. 03204 BKP BIP Sicherung lΣuft bereits
  7522.  
  7523.       Reason: Attempting an online backup procedure and another backup is
  7524.           already in progress.
  7525.  
  7526.       Remedy: Wait until the current online backup procedure has completed.
  7527.  
  7528. 03205 BKP UAB Kein Speicherplatz mehr auf Datenbank-Computer (BKP UAB)
  7529.  
  7530.       Reason: Not enough memory at the database engine to perform the
  7531.           requested task.
  7532.  
  7533.       Remedy: Check available memory at the database computer.    Attempt to
  7534.           make more memory available.  To make more memory available for
  7535.           the database engine, you can reduce size of the CACHE.
  7536.  
  7537. 03206 BKP SFA Fehler beim Suchen der Datei
  7538.  
  7539.       Reason: The database server is attempting to seek to the beginning of
  7540.           the backup file during a backup procedure are is encountering
  7541.           a file seek error.
  7542.  
  7543.       Remedy: Determine why the operating system is generating a file seek
  7544.           error.  Verify that the storage media is working correctly.
  7545.  
  7546. 03207 BKP DRF NICHT VERWENDET
  7547.  
  7548.       Reason: This is error code is currently not used by the SQLBase system.
  7549.  
  7550.       Remedy: None.  This error code should never occur.  If you get this
  7551.           error, contact your local Gupta Technologies certified
  7552.           technical support center.
  7553.  
  7554. 03208 BKP BWF NICHT VERWENDET
  7555.  
  7556.       Reason: This is error code is currently not used by the SQLBase system.
  7557.  
  7558.       Remedy: None.  This error code should never occur.  If you get this
  7559.           error, contact your local Gupta Technologies certified
  7560.           technical support center.
  7561.  
  7562. 03209 BKP HWF NICHT VERWENDET
  7563.  
  7564.       Reason: This is error code is currently not used by the SQLBase system.
  7565.  
  7566.       Remedy: None.  This error code should never occur.  If you get this
  7567.           error, contact your local Gupta Technologies certified
  7568.           technical support center.
  7569.  
  7570. 03210 BKP COL NICHT VERWENDET
  7571.  
  7572.       Reason: This is error code is currently not used by the SQLBase system.
  7573.  
  7574.       Remedy: None.  This error code should never occur.  If you get this
  7575.           error, contact your local Gupta Technologies certified
  7576.           technical support center.
  7577.  
  7578. 03211 BKP USG Unbekanntes Sicherungsdatei-Segment
  7579.  
  7580.       Reason: The database system has read a chunk of backup data and the
  7581.           system could not identify the backup file segment.
  7582.  
  7583.       Remedy: None.  The backup file is probably unusable.  Contact your local
  7584.           Gupta Technologies certified technical support center.
  7585.  
  7586. 03212 BKP CAC Kein Speicherplatz mehr auf Datenbank-Computer (BKP CAC)
  7587.  
  7588.       Reason: Not enough memory at the database engine to perform the
  7589.           requested task.
  7590.  
  7591.       Remedy: Check available memory at the database computer.    Attempt to
  7592.           make more memory available.  To make more memory available for
  7593.           the database engine, you can reduce size of the CACHE.
  7594.  
  7595.  
  7596. The errors documented in this section of the Error Guide are for errors that
  7597. relate to the Restore Facility of the SQLBase database.
  7598.  
  7599. 03301 RES COD NICHT VERWENDET
  7600.  
  7601.       Reason: This is error code is currently not used by the SQLBase system.
  7602.  
  7603.       Remedy: None.  This error code should never occur.  If you get this
  7604.           error, contact your local Gupta Technologies certified
  7605.           technical support center.
  7606.  
  7607. 03302 RES COB Sicherungsdatei kann nicht ge÷ffnet werden
  7608.  
  7609.       Reason: Attempting to open an existing file and a failure has occurred.
  7610.  
  7611.       Remedy: Determine and correct the cause of the open file failure.
  7612.           Verify that the specified file exists.  Verify the number of
  7613.           files allowed open for the operating system permits the
  7614.           additional file, that is, check the FILES= configuration
  7615.           parameter setting.
  7616.  
  7617. 03303 RES CBF NICHT VERWENDET
  7618.  
  7619.       Reason: This is error code is currently not used by the SQLBase system.
  7620.  
  7621.       Remedy: None.  This error code should never occur.  If you get this
  7622.           error, contact your local Gupta Technologies certified
  7623.           technical support center.
  7624.  
  7625. 03304 RES RIP NICHT VERWENDET
  7626.  
  7627.       Reason: This is error code is currently not used by the SQLBase system.
  7628.  
  7629.       Remedy: None.  This error code should never occur.  If you get this
  7630.           error, contact your local Gupta Technologies certified
  7631.           technical support center.
  7632.  
  7633. 03305 RES UAB Kein Speicherplatz mehr auf Datenbank-Computer (RES UAB)
  7634.  
  7635.       Reason: Not enough memory at the database engine to perform the
  7636.           requested task.
  7637.  
  7638.       Remedy: Check available memory at the database computer.    Attempt to
  7639.           make more memory available.  To make more memory available for
  7640.           the database engine, you can reduce size of the CACHE.
  7641.  
  7642. 03306 RES SFA Fehler beim Suchen der Sicherungsdatei
  7643.  
  7644.       Reason: The SQLBase system is attempting to re-find the beginning of the
  7645.           backup file and the seek for the beginning of the file has
  7646.           failed.
  7647.  
  7648.       Remedy: Determine and correct the cause of file seek failure.
  7649.  
  7650. 03307 RES 001 NICHT VERWENDET
  7651.  
  7652.       Reason: This is error code is currently not used by the SQLBase system.
  7653.  
  7654.       Remedy: None.  This error code should never occur.  If you get this
  7655.           error, contact your local Gupta Technologies certified
  7656.           technical support center.
  7657.  
  7658. 03308 RES BRF NICHT VERWENDET
  7659.  
  7660.       Reason: This is error code is currently not used by the SQLBase system.
  7661.  
  7662.       Remedy: None.  This error code should never occur.  If you get this
  7663.           error, contact your local Gupta Technologies certified
  7664.           technical support center.
  7665.  
  7666. 03309 RES HWF NICHT VERWENDET - Fehler beim Schreiben der ▄berschriftseite der Sicherungsdatei
  7667.  
  7668.       Reason: This is error code is currently not used by the SQLBase system.
  7669.  
  7670.       Remedy: None.  This error code should never occur.  If you get this
  7671.           error, contact your local Gupta Technologies certified
  7672.           technical support center.
  7673.  
  7674. 03310 RES TRF NICHT VERWENDET
  7675.  
  7676.       Reason: This is error code is currently not used by the SQLBase system.
  7677.  
  7678.       Remedy: None.  This error code should never occur.  If you get this
  7679.           error, contact your local Gupta Technologies certified
  7680.           technical support center.
  7681.  
  7682. 03311 RES REC NICHT VERWENDET
  7683.  
  7684.       Reason: This is error code is currently not used by the SQLBase system.
  7685.  
  7686.       Remedy: None.  This error code should never occur.  If you get this
  7687.           error, contact your local Gupta Technologies certified
  7688.           technical support center.
  7689.  
  7690. 03312 RES RDE NICHT VERWENDET
  7691.  
  7692.       Reason: This is error code is currently not used by the SQLBase system.
  7693.  
  7694.       Remedy: None.  This error code should never occur.  If you get this
  7695.           error, contact your local Gupta Technologies certified
  7696.           technical support center.
  7697.  
  7698. 03313 RES OUC NICHT VERWENDET
  7699.  
  7700.       Reason: This is error code is currently not used by the SQLBase system.
  7701.  
  7702.       Remedy: None.  This error code should never occur.  If you get this
  7703.           error, contact your local Gupta Technologies certified
  7704.           technical support center.
  7705.  
  7706. 03314 RES DUM NICHT VERWENDET
  7707.  
  7708.       Reason: This is error code is currently not used by the SQLBase system.
  7709.  
  7710.       Remedy: None.  This error code should never occur.  If you get this
  7711.           error, contact your local Gupta Technologies certified
  7712.           technical support center.
  7713.  
  7714. 03315 RES CAC Kein Speicherplatz mehr auf Datenbank-Computer (RES CAC)
  7715.  
  7716.       Reason: Not enough memory at the database engine to perform the
  7717.           requested task.
  7718.  
  7719.       Remedy: Check available memory at the database computer.    Attempt to
  7720.           make more memory available.  To make more memory available for
  7721.           the database engine, you can reduce size of the CACHE.
  7722.  
  7723. 03316 RES CPB NICHT VERWENDET
  7724.  
  7725.       Reason: This is error code is currently not used by the SQLBase system.
  7726.  
  7727.       Remedy: None.  This error code should never occur.  If you get this
  7728.           error, contact your local Gupta Technologies certified
  7729.           technical support center.
  7730.  
  7731. 03317 RES CCN Neue partitionierte Datenbankdatei kann nicht angelegt werden
  7732.  
  7733.       Reason: Attempting to create a file and a failure has occurred.
  7734.  
  7735.       Remedy: Determine and correct the cause of the create failure.  Run a
  7736.           check disk utility (CHKDSK) for the current operating system to
  7737.           verify the status of disk.  Verify that sufficient disk space is
  7738.           available and verify that the number of files allowed open for
  7739.           the operating system permits the additional file, that is, check
  7740.           the FILES= configuration parameter setting.
  7741.  
  7742.  
  7743. The errors documented in this section of the Error Guide are for errors that
  7744. relate to the System Free List Manager of the SQLBase database.
  7745.  
  7746. 03401 SFL BFE CHECK DATABASE ist fehlgeschlagen (SFL BFE)
  7747.  
  7748.       Reason: CHECK DATABASE has discovered a problem in the database.
  7749.  
  7750.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7751.           object is damaged, drop that object.  Otherwise, try unloading
  7752.           and reloading the database or restore from a backup copy of the
  7753.           database.  You might also try unloading table by table to save
  7754.           as much of the database as possible.
  7755.  
  7756. 03402 SFL OVL CHECK DATABASE ist fehlgeschlagen (SFL OVL)
  7757.  
  7758.       Reason: CHECK DATABASE has discovered a problem in the database.
  7759.  
  7760.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7761.           object is damaged, drop that object.  Otherwise, try unloading
  7762.           and reloading the database or restore from a backup copy of the
  7763.           database.  You might also try unloading table by table to save
  7764.           as much of the database as possible.
  7765.  
  7766. 03403 SFL ENM CHECK DATABASE ist fehlgeschlagen (SFL ENM)
  7767.  
  7768.       Reason: CHECK DATABASE has discovered a problem in the database.
  7769.  
  7770.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7771.           object is damaged, drop that object.  Otherwise, try unloading
  7772.           and reloading the database or restore from a backup copy of the
  7773.           database.  You might also try unloading table by table to save
  7774.           as much of the database as possible.
  7775.  
  7776. 03404 SFL FPC CHECK DATABASE ist fehlgeschlagen (SFL FPC)
  7777.  
  7778.       Reason: CHECK DATABASE has discovered a problem in the database.
  7779.  
  7780.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7781.           object is damaged, drop that object.  Otherwise, try unloading
  7782.           and reloading the database or restore from a backup copy of the
  7783.           database.  You might also try unloading table by table to save
  7784.           as much of the database as possible.
  7785.  
  7786. 03405 SFL BSI CHECK DATABASE ist fehlgeschlagen (SFL BSI)
  7787.  
  7788.       Reason: CHECK DATABASE has discovered a problem in the database.
  7789.  
  7790.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7791.           object is damaged, drop that object.  Otherwise, try unloading
  7792.           and reloading the database or restore from a backup copy of the
  7793.           database.  You might also try unloading table by table to save
  7794.           as much of the database as possible.
  7795.  
  7796.  
  7797. The errors documented in this section of the Error Guide are for errors that
  7798. relate to the Extent Map Manager of the SQLBase database.
  7799.  
  7800. 03501 EMP ULP Datenbank oder Objekt in der Datenbank ist fehlerhaft (EMP ULP)
  7801.  
  7802.       Reason: The database or an object in the database has been discovered
  7803.           to be inconsistent or lacking integrity.
  7804.  
  7805.       Remedy: Run a CHECK DATABASE command.
  7806.  
  7807. 03502 EMP BSI CHECK DATABASE ist fehlgeschlagen (EMP BSI)
  7808.  
  7809.       Reason: CHECK DATABASE has discovered a problem in the database.
  7810.  
  7811.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7812.           object is damaged, drop that object.  Otherwise, try unloading
  7813.           and reloading the database or restore from a backup copy of the
  7814.           database.  You might also try unloading table by table to save
  7815.           as much of the database as possible.
  7816.  
  7817. 03503 EMP BME CHECK DATABASE ist fehlgeschlagen (EMP BME)
  7818.  
  7819.       Reason: CHECK DATABASE has discovered a problem in the database.
  7820.  
  7821.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7822.           object is damaged, drop that object.  Otherwise, try unloading
  7823.           and reloading the database or restore from a backup copy of the
  7824.           database.  You might also try unloading table by table to save
  7825.           as much of the database as possible.
  7826.  
  7827. 03504 EMP BES CHECK DATABASE ist fehlgeschlagen (EMP BES)
  7828.  
  7829.       Reason: CHECK DATABASE has discovered a problem in the database.
  7830.  
  7831.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7832.           object is damaged, drop that object.  Otherwise, try unloading
  7833.           and reloading the database or restore from a backup copy of the
  7834.           database.  You might also try unloading table by table to save
  7835.           as much of the database as possible.
  7836.  
  7837. 03505 EMP ENM CHECK DATABASE ist fehlgeschlagen (EMP ENM)
  7838.  
  7839.       Reason: CHECK DATABASE has discovered a problem in the database.
  7840.  
  7841.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7842.           object is damaged, drop that object.  Otherwise, try unloading
  7843.           and reloading the database or restore from a backup copy of the
  7844.           database.  You might also try unloading table by table to save
  7845.           as much of the database as possible.
  7846.  
  7847. 03506 EMP PIM CHECK DATABASE ist fehlgeschlagen (EMP PIM)
  7848.  
  7849.       Reason: CHECK DATABASE has discovered a problem in the database.
  7850.  
  7851.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7852.           object is damaged, drop that object.  Otherwise, try unloading
  7853.           and reloading the database or restore from a backup copy of the
  7854.           database.  You might also try unloading table by table to save
  7855.           as much of the database as possible.
  7856.  
  7857. 03507 EMP MOB NICHT VERWENDET
  7858.  
  7859.       Reason: This is error code is currently not used by the SQLBase system.
  7860.  
  7861.       Remedy: None.  This error code should never occur.  If you get this
  7862.           error, contact your local Gupta Technologies certified
  7863.           technical support center.
  7864.  
  7865. 03508 EMP IEM CHECK DATABASE ist fehlgeschlagen (EMP IEM)
  7866.  
  7867.       Reason: CHECK DATABASE has discovered a problem in the database.
  7868.  
  7869.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7870.           object is damaged, drop that object.  Otherwise, try unloading
  7871.           and reloading the database or restore from a backup copy of the
  7872.           database.  You might also try unloading table by table to save
  7873.           as much of the database as possible.
  7874.  
  7875. 03509 EMP PNA CHECK DATABASE ist fehlgeschlagen (EMP PNA)
  7876.  
  7877.       Reason: CHECK DATABASE has discovered a problem in the database.
  7878.  
  7879.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7880.           object is damaged, drop that object.  Otherwise, try unloading
  7881.           and reloading the database or restore from a backup copy of the
  7882.           database.  You might also try unloading table by table to save
  7883.           as much of the database as possible.
  7884.  
  7885. 03510 EMP RNA CHECK DATABASE ist fehlgeschlagen (EMP RNA)
  7886.  
  7887.       Reason: CHECK DATABASE has discovered a problem in the database.
  7888.  
  7889.       Remedy: If the CHECK DATABASE displays a message saying that a database
  7890.           object is damaged, drop that object.  Otherwise, try unloading
  7891.           and reloading the database or restore from a backup copy of the
  7892.           database.  You might also try unloading table by table to save
  7893.           as much of the database as possible.
  7894.  
  7895.  
  7896. The errors documented in this section of the Error Guide are for errors that
  7897. relate to the DBWindows version of the SQLBase database.
  7898.  
  7899. 03601 DBW NIN DBWINDOWS ist nicht installiert
  7900.  
  7901.       Reason: Attempting to access the DBWindows and it is not installed.
  7902.  
  7903.       Remedy: Install DBWindows and then proceed.
  7904.  
  7905. 03602 DBW CAM Kein Speicherplatz mehr auf Datenbank-Computer (DBW CAM)
  7906.  
  7907.       Reason: Not enough memory at the database engine to perform the
  7908.           requested task.
  7909.  
  7910.       Remedy: Check available memory at the database computer.    Attempt to
  7911.           make more memory available.  To make more memory available for
  7912.           the database engine, you can reduce size of the CACHE.
  7913.  
  7914. 03603 DBW LOD NICHT VERWENDET
  7915.  
  7916.       Reason: This is error code is currently not used by the SQLBase system.
  7917.  
  7918.       Remedy: None.  This error code should never occur.  If you get this
  7919.           error, contact your local Gupta Technologies certified
  7920.           technical support center.
  7921.  
  7922.  
  7923. The errors documented in this section of the Error Guide are for errors that
  7924. relate to the Configuration File Manager of the SQLBase database.
  7925.  
  7926. 03701 CFF NCF Keine Konfigurationsdatei
  7927.  
  7928.       Reason: The SQL.INI configuration file could not be found after
  7929.           searching the current directory, the \SQLBASE directory, the
  7930.           root directory, or the specified operating system search PATH.
  7931.  
  7932.       Remedy: Check for the existence of the SQL.INI file in the appropriate
  7933.           directory.
  7934.  
  7935. 03702 CFF COC Konfigurationsdatei kann nicht ge÷ffent werden
  7936.  
  7937.       Reason: Attempting to open an existing file and a failure has occurred.
  7938.  
  7939.       Remedy: Determine and correct the cause of the open file failure.
  7940.           Verify that the specified file exists.  Verify the number of
  7941.           files allowed open for the operating system permits the
  7942.           additional file, that is, check the FILES= configuration
  7943.           parameter setting.
  7944.  
  7945. 03703 CFF MCE Konfigurationsdateieintrag fehlt
  7946.  
  7947.       Reason: Cannot find the configuration file entry [category] in the
  7948.           SQL.INI configuratin file.
  7949.  
  7950.       Remedy: Verify that he configuration file entry exists and that the
  7951.           proper SQL.INI configuration file is being used.
  7952.  
  7953. 03704 CFF FCL Die Datei ist geschlossen
  7954.  
  7955.       Reason: The SQLBase system is attempting to read, write, or delete a
  7956.           line from the SQL.INI configuration file and the SQL.INI
  7957.           configuration file is not open.
  7958.  
  7959.       Remedy: This error should never occur unless there is a problem with the
  7960.           SQL.INI configuration processing software in SQLBase.  Contact
  7961.           your local Gupta Technologies certified technical support
  7962.           center.
  7963.  
  7964. 03705 CFF LSK Dateisuchfehler der Konfigurationsdatei SQL.INI
  7965.  
  7966.       Reason: The SQLBase system is attempting to seek to a point within the
  7967.           SQL.INI configuration file and the seek operation has failed.
  7968.  
  7969.       Remedy: Determine and correct the cause of the disk seek failure.  Run a
  7970.           check disk utility (CHKDSK) for the current operating system to
  7971.           verify the status of the disk.
  7972.  
  7973. 03706 CFF CRD Fehler beim Lesen aus der Konfigurationsdatei SQL.INI
  7974.  
  7975.       Reason: Attempting to read a file and a disk read failure has occurred.
  7976.  
  7977.       Remedy: Determine and correct the cause of the disk read failure.  Run a
  7978.           check disk utility (CHKDSK) for the current operating system to
  7979.           verify the status of the disk.
  7980.  
  7981. 03707 CFF CWT Fehler beim Schreiben in die Konfigurationsdatei SQL.INI
  7982.  
  7983.       Reason: Attempting to write to a file and a disk write failure has
  7984.           occurred.
  7985.  
  7986.       Remedy: Determine and correct the cause of the disk write failure.  Most
  7987.           commonly, it may be because you have run out of available disk
  7988.           space.  If sufficient disk space is available, then run a check
  7989.           disk utility (CHKDSK) for the current operating system to verify
  7990.           the status of the disk.
  7991.  
  7992. 03708 CFF EOF NUR INTERN VERWENDET: Ende der Datei
  7993.  
  7994.       Reason: This is not considered an error.    This is only an indication
  7995.           that an end of file has been discovered in the SQL.INI file.
  7996.  
  7997.       Remedy: None.  Informational only.
  7998.  
  7999. 03709 CFF NDL Keine L÷schzeile in der Konfigurationsdatei SQL.INI verfⁿgbar
  8000.  
  8001.       Reason: The SQLBase system is attempting to delete a line within the
  8002.           SQL.INI configuration file and there is not line to delete.
  8003.  
  8004.       Remedy: This error should never occur unless there is a problem with the
  8005.           SQL.INI configuration processing software in SQLBase.  Contact
  8006.           your local Gupta Technologies certified technical support
  8007.           center.
  8008.  
  8009. 03710 CFF OOM Kein weiterer Speicherplatz vorhanden
  8010.  
  8011.       Reason: Either the database computer or the client workstation
  8012.           computer is running short of available memory.
  8013.  
  8014.       Remedy: Check available memory and attempt to make more memory
  8015.           available.  To make more memory available at the database
  8016.           computer, you can reduce the size of the CACHE.
  8017.  
  8018. 03711 CFF ARO NICHT VERWENDET
  8019.  
  8020.       Reason: This is error code is currently not used by the SQLBase system.
  8021.  
  8022.       Remedy: None.  This error code should never occur.  If you get this
  8023.           error, contact your local Gupta Technologies certified
  8024.           technical support center.
  8025.  
  8026. 03712 CFF ICK Ungⁿltige SQL.INI-Konfigurationsparameter
  8027.  
  8028.       Reason: An invalid SQL.INI configuration parameter has been read from
  8029.           the SQL.INI configuration file.
  8030.  
  8031.       Remedy: Verify that the SQL.INI configuration parameters are correctly
  8032.           specified.  Check that the system is reading the SQL.INI file
  8033.           that you think it is reading.  See what other SQL.INI files
  8034.           exist in the current directory, the \SQLBase directory, the root
  8035.           directory, or on the operating system search PATH.
  8036.  
  8037. 03713 CFF MPV Fehlender Konfigurationsparameterwert
  8038.  
  8039.       Reason: A SQL.INI configuration parameter has been specified and
  8040.           the expected form of the SQL.INI configuration parameter
  8041.           is KEYWORD=VALUE and the value portion of the SQL.INI
  8042.           configuration parameter is missing.
  8043.  
  8044.       Remedy: Verify that the SQL.INI configuration parameter values are
  8045.           correctly specified.  Check that the system is reading the
  8046.           SQL.INI file that you think it is reading.  See what other
  8047.           SQL.INI files exist in the current directory, the \SQLBase
  8048.           directory, the root directory, or on the OS search PATH.
  8049.  
  8050. 03714 CFF CFE INTERNAL USE ONLY - Fehler in Konfigurationsdatei
  8051.  
  8052.       Reason: This is error is only used internally by the SQLBase system.
  8053.  
  8054.       Remedy: None.  This error code should never occur.  If you get this
  8055.           error, contact your local Gupta Technologies certified
  8056.           technical support center.
  8057.  
  8058. 03715 CFF MEM NICHT VERWENDET
  8059.  
  8060.       Reason: This is error code is currently not used by the SQLBase system.
  8061.  
  8062.       Remedy: None.  This error code should never occur.  If you get this
  8063.           error, contact your local Gupta Technologies certified
  8064.           technical support center.
  8065.  
  8066. 03716 CFF INI Ungⁿltiger Integerparameter
  8067.  
  8068.       Reason: A SQL.INI configuration parameter has been specified and the
  8069.           expected form of the SQL.INI configuration parameter is
  8070.           KEYWORD=integer-value and the integer-value portion of the
  8071.           SQL.INI configuration parameter is not a valid integer.
  8072.  
  8073.       Remedy: Verify that the SQL.INI configuration parameter integer-values
  8074.           are correctly specified.    Check that the system is reading the
  8075.           SQL.INI file that you think it is reading.  See what other
  8076.           SQL.INI files exist in the current directory, the \SQLBase
  8077.           directory, the root directory, or on the OS search PATH.
  8078.  
  8079. 03717 CFF INB Ungⁿltiger Boolean-Parameter
  8080.  
  8081.       Reason: A SQL.INI configuration parameter has been specified and the
  8082.           expected form of the SQL.INI configuration parameter is
  8083.           KEYWORD=boolean-value and the boolean-value portion of the
  8084.           SQL.INI configuration parameter is not a valid integer.
  8085.  
  8086.       Remedy: Verify that the SQL.INI configuration parameter boolean-values
  8087.           are correctly specified.    Check that the system is reading the
  8088.           SQL.INI file that you think it is reading.  See what other
  8089.           SQL.INI files exist in the current directory, the \SQLBase
  8090.           directory, the root directory, or on the OS search PATH.
  8091.  
  8092. 03718 CFF INK Ungⁿltiges Parameterschlⁿsselwort
  8093.  
  8094.       Reason: A SQL.INI configuration parameter has been specified and the
  8095.           expected form of the SQL.INI configuration parameter is
  8096.           PARAMETER=KEYWORD and the keyword portion of the SQL.INI
  8097.           configuration parameter is not a valid keyword.
  8098.  
  8099.       Remedy: Verify that the SQL.INI configuration parameter keywords are
  8100.           correctly specified.  Check that the system is reading the
  8101.           SQL.INI file that you think it is reading.  See what other
  8102.           SQL.INI files exist in the current directory, \SQLBase
  8103.           directory, root directory, or on the OS search PATH.
  8104.  
  8105. 03719 CFF MES Gleichheitszeichen auf Parameter fehlt
  8106.  
  8107.       Reason: A SQL.INI configuration parameter has been specified and the
  8108.           expected form of the SQL.INI configuration parameter is
  8109.           KEYWORD=value and the equal sign (=) is missing.
  8110.  
  8111.       Remedy: Verify that the SQL.INI configuration parameter has a equal sign
  8112.           correctly specified.  Check that the system is reading the
  8113.           SQL.INI file that you think it is reading.  See what other
  8114.           SQL.INI files exist in the current directory, \SQLBase
  8115.           directory, root directory, or on the OS search PATH.
  8116.  
  8117. 03720 CFF NOP Datenbank MAIN ist nicht allgemein zugΣnglich
  8118.  
  8119.       Reason: A DBNAME= SQL.INI configuration parameter specifies the main
  8120.           database and the main database is not available to the public.
  8121.  
  8122.       Remedy: Remove or change the name of the database that you are
  8123.           attempting to install that has the name of "MAIN".
  8124.  
  8125. 03721 CFF IPL Unkorrekte Server-PrΣfixlΣnge
  8126.  
  8127.       Reason: A SERVERPREFIX= SQL.INI configuration parameter specified a
  8128.           serverprefix that is something other than one character.
  8129.  
  8130.       Remedy: Correct the SERVERPREFIX parameter.  A server prefix can only be
  8131.           one character.
  8132.  
  8133. 03722 CFF ICN Ungⁿltiger CLIENTNAME-Parameter
  8134.  
  8135.       Reason: A CLIENTNAME=  SQL.INI  configuration  parameter    specified  a
  8136.           client name which is either too small or too  large.   Maximum
  8137.           size is twelve characters
  8138.  
  8139.       Remedy: Correct the CLIENTNAME parameter to  be  from  one  to  twelve
  8140.           characters.
  8141.  
  8142. 03723 CFF EPD Ungⁿltiger EPDATECHK-Parameter
  8143.  
  8144.       Reason: The only allowed values fo EPDATECHK are parameters  are    'ON'
  8145.           or 'OFF'.  The default is OFF.
  8146.  
  8147.       Remedy: Correct the parameter to use 'ON' or 'OFF'.
  8148.  
  8149. 03724 CFF IMA Ungⁿltiger MACHINE-Parameter
  8150.  
  8151.       Reason: This parameter is used to cause SQLBase to  adapt  to  special
  8152.           non-standard hardware.  This is  primarily  for  Japanese  NEC
  8153.           machine  and  other  AX  standard  machines.   There  are  few
  8154.           hardware difference between NEC  machine    and  IBM  compatible
  8155.           machine.    Currently, the allowed parameters are 'NEC' or 'AX'.
  8156.  
  8157.       Remedy: Correct the parameter to 'NEC' or 'AX'.
  8158.  
  8159. 03725 CFF DDB Ungⁿltige DEFAULTDATABASE
  8160.  
  8161.       Reason: The DEFAULTDATABASE name should be a  short  identifier.     The
  8162.           length should not be more than 8 characters long and  all  the
  8163.           characters should be valid identifier characters.
  8164.  
  8165.       Remedy: Correct the parameter value to a valid short identifier.
  8166.  
  8167. 03726 CFF ITF Fehlerⁿbersetzungstabelle kann nicht ge÷ffnet werden
  8168.  
  8169.       Reason: The error translation file  specified could not be found.
  8170.  
  8171.       Remedy: Check the error translation file name spelling.  Make sure the
  8172.           file is there.
  8173.  
  8174. 03727 CFF OME Kein Speicherplatz mehr fⁿr Fehlerⁿbersetzungstabelle vorhanden
  8175.  
  8176.       Reason: Can not dynamic allocate memory space for error translation
  8177.           table.
  8178.  
  8179.       Remedy: Find a way  to  decrease    other  memory  usage  (e.g.   Memory
  8180.           resident programs) or add more memory to your machine.
  8181.  
  8182. 03728 CFF APC Ungⁿltiger APPCDLC-Parameter
  8183.  
  8184.       Reason: The value should be 'SDLC' or 'ITRN'.  The  length  should  be
  8185.           exactly 4.
  8186.  
  8187.       Remedy: Check your spelling.  Correct the parameter.
  8188.  
  8189. 03729 CFF PEX Datei kann zum Lesen nicht ge÷ffnet werden
  8190.  
  8191.       Reason: The specified file could not be opened for read.     Either  the
  8192.           file doesn't exist or it is lock by another program which  may
  8193.           be writing to the file.
  8194.  
  8195.       Remedy: Check the file name and make  sure  you  do  have  that  file.
  8196.           Check your spelling.
  8197.  
  8198. 03730 CFF PSW Ungⁿltiges DEFAULTPASSWORD
  8199.  
  8200.       Reason: The password is too long.
  8201.  
  8202.       Remedy: Correct the password so that it is one to eight characters.
  8203.  
  8204. 03731 CFF PWD Ungⁿltiges PASSWORD
  8205.  
  8206.       Reason: The password is too long.
  8207.  
  8208.       Remedy: Correct the password so that it is one to eight characters.
  8209.  
  8210. 03732 CFF TMZ Ungⁿltige TIMEZONE
  8211.  
  8212.       Reason: A floating point number between -12 and +12 is expected.     The
  8213.           unit is hour.
  8214.  
  8215.       Remedy: Make sure the specified number is between -12  and +12.
  8216.  
  8217. 03733 CFF USR Ungⁿltiger DEFAULTUSER
  8218.  
  8219.       Reason: The length of the user is too long.
  8220.  
  8221.       Remedy: Make sure the user is from one to eight characters.
  8222.  
  8223. 03734 CFF OOF Only accept 0 or 1 as parameter
  8224.  
  8225.       Reason: Only 0 for OFF and 1 for ON is accepted for this parameter.
  8226.  
  8227.       Remedy: Make sure the parameter value is either a 1 or a 0.
  8228.  
  8229. 03735 CFF OCS Datei kann fⁿr ZeichensΣtze nicht ge÷ffnet werden
  8230.  
  8231.       Reason: The CHARACTERSET file could not be opened.
  8232.           This means either the file does not exist or the file
  8233.           is in use by another user.
  8234.  
  8235.       Remedy: Check the file name and make  sure  you  do  have  that  file.
  8236.           Check your spelling.  If the specified file name does not have
  8237.           a file extension, .CHR is the default file extention.
  8238.  
  8239. 03736 CFF CST Kein Speicherplatz mehr fⁿr Zeichensatztabellen vorhanden
  8240.  
  8241.       Reason: Not enough free memory was found for the character set table.
  8242.  
  8243.       Remedy: Find a way to decrease other memory usage (e.g. emory resident
  8244.           programs) or add more memory to your machine.
  8245.  
  8246. 03737 CFF IVC Ungⁿltiges Zeichen in Zeichensatz
  8247.  
  8248.       Reason: The value is out out range 0x00 and 0xFF.
  8249.  
  8250.       Remedy: Check the values in the CHARACTERSET f file and make sure they
  8251.           are within range.
  8252.  
  8253. 03738 CFF IRO Ungⁿltige Rekorderoption
  8254.  
  8255.       Reason: It is a invalid file name or can not allocate recorder
  8256.           definition structure. (out of memory)
  8257.  
  8258.       Remedy: Use a valid file name.
  8259.  
  8260. 03739 CFF ROS Das System enthΣlt keine Rekorderoption
  8261.  
  8262.       Reason: This section does not have recorder option.
  8263.  
  8264.       Remedy: This line has to be deleted in this section.
  8265.  
  8266. 03740 CFF LTL Line zu lang in SQL.INI
  8267.  
  8268.       Reason: A configuration entry in SQL.INI was too long.
  8269.  
  8270.       Remedy: Shorten the offending line in SQL.INI. In many cases
  8271.           it is possible to split up 1 configuration entry into
  8272.           several entries using the same keyword.
  8273.  
  8274. 03741 CFF INP Ungⁿltiger NETPREFIX oder NETPREFIX zu lang
  8275.  
  8276.       Reason: The value of the NETPREFIX is invalid.  The size of  NETPREFIX
  8277.           is limited to 3 alphanumeric characters.
  8278.  
  8279.       Remedy: Alter the value of NETPREFIX to be less than or equal  to  ten
  8280.           characters and contain only alphanumeric characters.
  8281.  
  8282.  
  8283. The errors documented in this section of the Error Guide are for errors that
  8284. relate to the Remote SQLBase database server interface to the OS/2 operating
  8285. system.
  8286.  
  8287. 03801 RSO SAC NICHT VERWENDET
  8288.  
  8289.       Reason: This is error code is currently not used by the SQLBase system.
  8290.  
  8291.       Remedy: None.  This error code should never occur.  If you get this
  8292.           error, contact your local Gupta Technologies certified
  8293.           technical support center.
  8294.  
  8295. 03802 RSO NEM Kein Speicherplatz mehr beim Client vorhanden
  8296.  
  8297.       Reason: The application has run out of memory at the client workstation.
  8298.  
  8299.       Remedy: Check available memory at the client workstation.  Attempt to
  8300.           make more memory available.
  8301.  
  8302. 03803 RSO IEN NICHT VERWENDET
  8303.  
  8304.       Reason: This is error code is currently not used by the SQLBase system.
  8305.  
  8306.       Remedy: None.  This error code should never occur.  If you get this
  8307.           error, contact your local Gupta Technologies certified
  8308.           technical support center.
  8309.  
  8310. 03804 RSO TNI NICHT VERWENDET
  8311.  
  8312.       Reason: This is error code is currently not used by the SQLBase system.
  8313.  
  8314.       Remedy: None.  This error code should never occur.  If you get this
  8315.           error, contact your local Gupta Technologies certified
  8316.           technical support center.
  8317.  
  8318. 03805 RSO TDE NICHT VERWENDET
  8319.  
  8320.       Reason: This is error code is currently not used by the SQLBase system.
  8321.  
  8322.       Remedy: None.  This error code should never occur.  If you get this
  8323.           error, contact your local Gupta Technologies certified
  8324.           technical support center.
  8325.  
  8326. 03806 RSO TAI NICHT VERWENDET
  8327.  
  8328.       Reason: This is error code is currently not used by the SQLBase system.
  8329.  
  8330.       Remedy: None.  This error code should never occur.  If you get this
  8331.           error, contact your local Gupta Technologies certified
  8332.           technical support center.
  8333.  
  8334. 03807 RSO NAS NICHT VERWENDET
  8335.  
  8336.       Reason: This is error code is currently not used by the SQLBase system.
  8337.  
  8338.       Remedy: None.  This error code should never occur.  If you get this
  8339.           error, contact your local Gupta Technologies certified
  8340.           technical support center.
  8341.  
  8342. 03808 RSO SNE Sitzung existiert nicht
  8343.  
  8344.       Reason: This error is currently undocumented.
  8345.  
  8346.       Remedy: Contact your local Gupta Technologies certified technical
  8347.           support center for assistance.
  8348.  
  8349. 03809 RSO ICB NICHT VERWENDET
  8350.  
  8351.       Reason: This is error code is currently not used by the SQLBase system.
  8352.  
  8353.       Remedy: None.  This error code should never occur.  If you get this
  8354.           error, contact your local Gupta Technologies certified
  8355.           technical support center.
  8356.  
  8357. 03810 RSO SCT Sitzung wurde geschlossen/beendet
  8358.  
  8359.       Reason: This error is currently undocumented.
  8360.  
  8361.       Remedy: Contact your local Gupta Technologies certified technical
  8362.           support center for assistance.
  8363.  
  8364. 03811 RSO CFS Sitzung wurde nicht gefunden
  8365.  
  8366.       Reason: This error is currently undocumented.
  8367.  
  8368.       Remedy: Contact your local Gupta Technologies certified technical
  8369.           support center for assistance.
  8370.  
  8371. 03812 RSO INE Schwerer SQLBase-Systemfehler (RSE INE)
  8372.  
  8373.       Reason: This is a Fatal Error.
  8374.  
  8375.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  8376.           If a FAIL.SQL file is available, then save it.  Attempt to
  8377.           reproduce the problem via a SQL script, scenario, or using the
  8378.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  8379.           Contact your local Gupta certified technical support center.
  8380.  
  8381. 03813 RSO OOS Keine Sitzungen mehr vorhanden
  8382.  
  8383.       Reason: This error is currently undocumented.
  8384.  
  8385.       Remedy: Contact your local Gupta Technologies certified technical
  8386.           support center for assistance.
  8387.  
  8388. 03814 RSO CAN NICHT VERWENDET
  8389.  
  8390.       Reason: This is error code is currently not used by the SQLBase system.
  8391.  
  8392.       Remedy: None.  This error code should never occur.  If you get this
  8393.           error, contact your local Gupta Technologies certified
  8394.           technical support center.
  8395.  
  8396.  
  8397. The errors documented in this section of the Error Guide are for errors that
  8398. relate to the Transaction Log Manager of the SQLBase database.
  8399.  
  8400. 03901 LOG CCL Protokolldatei kann nicht angelegt werden
  8401.  
  8402.       Reason: Attempting to create a file and a failure has occurred.
  8403.  
  8404.       Remedy: Determine and correct the cause of the create failure.  Run a
  8405.           check disk utility (CHKDSK) for the current operating system to
  8406.           verify the status of disk.  Verify that sufficient disk space is
  8407.           available and verify that the number of files allowed open for
  8408.           the operating system permits the additional file, that is, check
  8409.           the FILES= configuration parameter setting.
  8410.  
  8411. 03902 LOG MLF NICHT VERWENDET
  8412.  
  8413.       Reason: This is error code is currently not used by the SQLBase system.
  8414.  
  8415.       Remedy: None.  This error code should never occur.  If you get this
  8416.           error, contact your local Gupta Technologies certified
  8417.           technical support center.
  8418.  
  8419. 03903 LOG CAL Kein Speicherplatz mehr auf Datenbank-Computer (LOG CAL)
  8420.  
  8421.       Reason: Not enough memory at the database engine to perform the
  8422.           requested task.
  8423.  
  8424.       Remedy: Check available memory at the database computer.    Attempt to
  8425.           make more memory available.  To make more memory available for
  8426.           the database engine, you can reduce size of the CACHE.
  8427.  
  8428. 03904 LOG CAB Kein Speicherplatz mehr auf Datenbank-Computer (LOG CAB)
  8429.  
  8430.       Reason: Not enough memory at the database engine to perform the
  8431.           requested task.
  8432.  
  8433.       Remedy: Check available memory at the database computer.    Attempt to
  8434.           make more memory available.  To make more memory available for
  8435.           the database engine, you can reduce size of the CACHE.
  8436.  
  8437. 03905 LOG COL NICHT VERWENDET
  8438.  
  8439.       Reason: This is error code is currently not used by the SQLBase system.
  8440.  
  8441.       Remedy: None.  This error code should never occur.  If you get this
  8442.           error, contact your local Gupta Technologies certified
  8443.           technical support center.
  8444.  
  8445. 03906 LOG CRL NICHT VERWENDET
  8446.  
  8447.       Reason: This is error code is currently not used by the SQLBase system.
  8448.  
  8449.       Remedy: None.  This error code should never occur.  If you get this
  8450.           error, contact your local Gupta Technologies certified
  8451.           technical support center.
  8452.  
  8453. 03907 LOG LNE Schwerer SQLBase-Systemfehler (LOG LNE)
  8454.  
  8455.       Reason: This is a Fatal Error.
  8456.  
  8457.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  8458.           If a FAIL.SQL file is available, then save it.  Attempt to
  8459.           reproduce the problem via a SQL script, scenario, or using the
  8460.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  8461.           Contact your local Gupta certified technical support center.
  8462.  
  8463. 03908 LOG LRO Schwerer SQLBase-Systemfehler (LOG LRO)
  8464.  
  8465.       Reason: This is a Fatal Error.
  8466.  
  8467.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  8468.           If a FAIL.SQL file is available, then save it.  Attempt to
  8469.           reproduce the problem via a SQL script, scenario, or using the
  8470.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  8471.           Contact your local Gupta certified technical support center.
  8472.  
  8473. 03909 LOG BMP Schwerer SQLBase-Systemfehler (LOG BMP)
  8474.  
  8475.       Reason: This is a Fatal Error.
  8476.  
  8477.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  8478.           If a FAIL.SQL file is available, then save it.  Attempt to
  8479.           reproduce the problem via a SQL script, scenario, or using the
  8480.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  8481.           Contact your local Gupta certified technical support center.
  8482.  
  8483. 03910 LOG MIP Schwerer SQLBase-Systemfehler (LOG MIP)
  8484.  
  8485.       Reason: This is a Fatal Error.
  8486.  
  8487.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  8488.           If a FAIL.SQL file is available, then save it.  Attempt to
  8489.           reproduce the problem via a SQL script, scenario, or using the
  8490.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  8491.           Contact your local Gupta certified technical support center.
  8492.  
  8493. 03911 LOG PNP Schwerer SQLBase-Systemfehler (LOG PNP)
  8494.  
  8495.       Reason: This is a Fatal Error.
  8496.  
  8497.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  8498.           If a FAIL.SQL file is available, then save it.  Attempt to
  8499.           reproduce the problem via a SQL script, scenario, or using the
  8500.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  8501.           Contact your local Gupta certified technical support center.
  8502.  
  8503. 03912 LOG ETS Transaktionsspannenlimit wurde ⁿberschritten
  8504.  
  8505.       Reason: The transaction has exceeded the transaction span limit and
  8506.           therefore has been rolled back by the system.
  8507.  
  8508.       Remedy: Long running transactions can pin down disk log files that could
  8509.           otherwise be deleted.  The transaction span limit prevents logs
  8510.           from being pinned down by long running active transactions.  To
  8511.           fix this problem, either modify the transactions so that they
  8512.           are not long running, that is, COMMIT more frequently, or
  8513.           increase or eliminate the transaction span limit.
  8514.  
  8515. 03913 LOG OOM NICHT VERWENDET
  8516.  
  8517.       Reason: This is error code is currently not used by the SQLBase system.
  8518.  
  8519.       Remedy: None.  This error code should never occur.  If you get this
  8520.           error, contact your local Gupta Technologies certified
  8521.           technical support center.
  8522.  
  8523. 03914 LOG BOX NUR INTERN VERWENDET: Boxcar-Ereignis
  8524.  
  8525.       Reason: This is error is only used internally by the SQLBase system.
  8526.  
  8527.       Remedy: None.  This error code should never occur.  If you get this
  8528.           error, contact your local Gupta Technologies certified
  8529.           technical support center.
  8530.  
  8531. 03915 LOG CLF Schwerer SQLBase-Systemfehler (LOG CLF)
  8532.  
  8533.       Reason: This is a Fatal Error.
  8534.  
  8535.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  8536.           If a FAIL.SQL file is available, then save it.  Attempt to
  8537.           reproduce the problem via a SQL script, scenario, or using the
  8538.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  8539.           Contact your local Gupta certified technical support center.
  8540.  
  8541. 03916 LOG BLF Fehlerhafte Protokolldatei
  8542.  
  8543.       Reason: The database system has determined during recovery that the
  8544.           specified log file serial number does not match the database
  8545.           serial number.
  8546.  
  8547.       Remedy: Verify that the correct log files are being used.
  8548.  
  8549.  
  8550. The errors documented in this section of the Error Guide are for errors that
  8551. relate to the database Recovery Manager of the SQLBase database.
  8552.  
  8553. 04001 REC CAR Kein Speicherplatz mehr auf Datenbank-Computer (REC CAR)
  8554.  
  8555.       Reason: Not enough memory at the database engine to perform the
  8556.           requested task.
  8557.  
  8558.       Remedy: Check available memory at the database computer.    Attempt to
  8559.           make more memory available.  To make more memory available for
  8560.           the database engine, you can reduce size of the CACHE.
  8561.  
  8562. 04002 REC BLC Fehlerhafte Protokollaufzeichnungskette
  8563.  
  8564.       Reason: The transaction log file is corrupted.
  8565.  
  8566.       Remedy: Recovery is only available up to this corrupted log file.
  8567.  
  8568. 04003 REC LRF Lesen der Protokolldatei fehlgeschlagen
  8569.  
  8570.       Reason: Attempting to read a file and a disk read failure has occurred.
  8571.  
  8572.       Remedy: Determine and correct the cause of the disk read failure.  Run a
  8573.           check disk utility (CHKDSK) for the current operating system to
  8574.           verify the status of the disk.
  8575.  
  8576. 04004 REC MBT Protokollaufzeichnung des Transaktionsbeginns fehlt
  8577.  
  8578.       Reason: The transaction log file is corrupted.
  8579.  
  8580.       Remedy: Recovery is only available up to this corrupted log file.
  8581.  
  8582. 04005 REC COL Protokolldatei kann nicht ge÷ffnet werden
  8583.  
  8584.       Reason: Attempting to open an existing file and a failure has occurred.
  8585.  
  8586.       Remedy: Determine and correct the cause of the open file failure.
  8587.           Verify that the specified file exists.  Verify the number of
  8588.           files allowed open for the operating system permits the
  8589.           additional file, that is, check the FILES= configuration
  8590.           parameter setting.
  8591.  
  8592. 04006 REC BLR Fehlerhafte Protokollaufzeichnung
  8593.  
  8594.       Reason: The transaction log file is corrupted.
  8595.  
  8596.       Remedy: Recovery is only available up to this corrupted log file.
  8597.  
  8598. 04007 REC PUF NICHT VERWENDET
  8599.  
  8600.       Reason: This is error code is currently not used by the SQLBase system.
  8601.  
  8602.       Remedy: None.  This error code should never occur.  If you get this
  8603.           error, contact your local Gupta Technologies certified
  8604.           technical support center.
  8605.  
  8606. 04008 REC SNF Speicherpunkt nicht gefunden
  8607.  
  8608.       Reason: Attempting a ROLLBACK to a savepoint identifier and a savepoint
  8609.           with this identifier has not been set.
  8610.  
  8611.       Remedy: Verify the savepoint identifier is correct and verify that the
  8612.           savepoint with the correctly specified identifier has been set.
  8613.  
  8614. 04009 REC CRL Kein Speicherplatz mehr auf Datenbank-Computer (REC CRL)
  8615.  
  8616.       Reason: Not enough memory at the database engine to perform the
  8617.           requested task.
  8618.  
  8619.       Remedy: Check available memory at the database computer.    Attempt to
  8620.           make more memory available.  To make more memory available for
  8621.           the database engine, you can reduce size of the CACHE.
  8622.  
  8623. 04010 REC FNB Erste Protokollaufzeichnung: Transaktion nicht beginnen
  8624.  
  8625.       Reason: The transaction log file is corrupted.
  8626.  
  8627.       Remedy: Recovery is only available up to this corrupted log file.
  8628.  
  8629. 04011 REC CP1 Erster Protokollaufzeichnungs-Prⁿfpunkt fehlt
  8630.  
  8631.       Reason: The transaction log file is corrupted.
  8632.  
  8633.       Remedy: Recovery is only available up to this corrupted log file.
  8634.  
  8635. 04012 REC CP2 Zweiter Protokollaufzeichnungs-Prⁿfpunkt fehlt
  8636.  
  8637.       Reason: The transaction log file is corrupted.
  8638.  
  8639.       Remedy: Recovery is only available up to this corrupted log file.
  8640.  
  8641. 04013 REC TLO Schwerer SQLBase-Systemfehler (REC TLO)
  8642.  
  8643.       Reason: This is a Fatal Error.
  8644.  
  8645.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  8646.           If a FAIL.SQL file is available, then save it.  Attempt to
  8647.           reproduce the problem via a SQL script, scenario, or using the
  8648.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  8649.           Contact your local Gupta certified technical support center.
  8650.  
  8651. 04014 REC CRC Kein Speicherplatz mehr auf Datenbank-Computer (REC CRC)
  8652.  
  8653.       Reason: Not enough memory at the database engine to perform the
  8654.           requested task.
  8655.  
  8656.       Remedy: Check available memory at the database computer.    Attempt to
  8657.           make more memory available.  To make more memory available for
  8658.           the database engine, you can reduce size of the CACHE.
  8659.  
  8660. 04015 REC DBT Beginn doppelter Transaktionsaufzeichnung
  8661.  
  8662.       Reason: The transaction log file is corrupted.
  8663.  
  8664.       Remedy: Recovery is only available up to this corrupted log file.
  8665.  
  8666. 04016 REC TMB Zeit fⁿr Rollforward kann erst nach Beendigung der On-line-Sicherung beginnen
  8667.  
  8668.       Reason: Attempting ROLLFORWARD database-name TO TIME and the specified
  8669.           time is after the time when the backup was taken.
  8670.  
  8671.       Remedy: Correct the specified time.
  8672.  
  8673. 04017 REC MOB Protokollaufzeichnung: On-line-Sicherung-beginnen fehlt
  8674.  
  8675.       Reason: The transaction log file is corrupted.
  8676.  
  8677.       Remedy: Recovery is only available up to this corrupted log file.
  8678.  
  8679. 04018 REC MOE Protokollaufzeichnung: On-line-Sicherung-beenden fehlt
  8680.  
  8681.       Reason: The transaction log file is corrupted.
  8682.  
  8683.       Remedy: Recovery is only available up to this corrupted log file.
  8684.  
  8685. 04019 REC BTV Schwerer SQLBase-Systemfehler (REC BTV)
  8686.  
  8687.       Reason: This is a Fatal Error.
  8688.  
  8689.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  8690.           If a FAIL.SQL file is available, then save it.  Attempt to
  8691.           reproduce the problem via a SQL script, scenario, or using the
  8692.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  8693.           Contact your local Gupta certified technical support center.
  8694.  
  8695. 04020 REC RFN Schwerer SQLBase-Systemfehler (REC RFN)
  8696.  
  8697.       Reason: This is a Fatal Error.
  8698.  
  8699.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  8700.           If a FAIL.SQL file is available, then save it.  Attempt to
  8701.           reproduce the problem via a SQL script, scenario, or using the
  8702.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  8703.           Contact your local Gupta certified technical support center.
  8704.  
  8705. 04021 REC RFA Rollforward wurde bereits gestartet
  8706.  
  8707.       Reason: User error, rollforward has already been started.
  8708.  
  8709.       Remedy: Finish the current rollforward process or reload from a backup.
  8710.  
  8711. 04022 REC RFI Rollforward wurde unterbrochen; Datenbanksicherung mu▀ wiederhergestellt werden
  8712.  
  8713.       Reason: The rollforward operation has been interrupted.
  8714.  
  8715.       Remedy: Restore the database from a backup again.
  8716.  
  8717. 04023 REC CRF Datenbank mu▀ vor der Operation Rollforward wiederhergestellt werden
  8718.  
  8719.       Reason: Database is in a crash state.
  8720.  
  8721.       Remedy: Restore database to previous backup before beginning rollforward
  8722.           procedure.
  8723.  
  8724. 04024 REC RCO Rollforward ist in Bereichen, in denen Wiederherstellung ausgeschaltet wurde, nicht m÷glich
  8725.  
  8726.       Reason: User error, you cannot rollforward thru a region where recovery
  8727.           is off.
  8728.  
  8729.       Remedy: None.  You cannot rollforward thru RECOVERY OFF region.
  8730.  
  8731. 04025 REC ITI Schwerer SQLBase-Systemfehler (REC ITI)
  8732.  
  8733.       Reason: This is a Fatal Error.
  8734.  
  8735.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  8736.           If a FAIL.SQL file is available, then save it.  Attempt to
  8737.           reproduce the problem via a SQL script, scenario, or using the
  8738.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  8739.           Contact your local Gupta certified technical support center.
  8740.  
  8741.  
  8742. The errors documented in this section of the Error Guide are for errors that
  8743. relate to the SQLTalk for DOS program.
  8744.  
  8745. 05001 TLK INR Ungⁿltige Zeilenanzahl
  8746.  
  8747.       Reason: Attempting a FETCH command and the number of rows specified is
  8748.           less than one or invalid.
  8749.  
  8750.       Remedy: Correct the SQLTalk command.  The FETCH command requires the
  8751.           number of rows to fetch.    The syntax is FETCH n where n is the
  8752.           number of rows to fetch.
  8753.  
  8754. 05002 TLK QNS Ergebnismengen-Restriktionsmodus wird in dieser Abfrage nicht untertstⁿtzt
  8755.  
  8756.       Reason: This error is currently undocumented.
  8757.  
  8758.       Remedy: Contact your local Gupta Technologies certified technical
  8759.           support center for assistance.
  8760.  
  8761. 05003 TLK COL Memodatei kann nicht ge÷ffnet werden -- ⁿbergangen
  8762.  
  8763.       Reason: Attempting to bind long data to a long data file and the file
  8764.           name specified cannot be opened.
  8765.  
  8766.       Remedy: Verify that the specified filename is correct.
  8767.  
  8768. 05004 TLK CAA NICHT VERWENDET
  8769.  
  8770.       Reason: This is error code is currently not used by the SQLBase system.
  8771.  
  8772.       Remedy: None.  This error code should never occur.  If you get this
  8773.           error, contact your local Gupta Technologies certified
  8774.           technical support center.
  8775.  
  8776. 05005 TLK CNA Cursor ist nicht aktiv
  8777.  
  8778.       Reason: Attempting to DISCONNECT or USE a cursor by number that is not
  8779.           active.
  8780.  
  8781.       Remedy: Correct DISCONNECT or USE command to only use a cursor number
  8782.           that has previously been successfully connected to.
  8783.  
  8784. 05006 TLK DNA Daten sind in diesem Befehl nicht erlaubt
  8785.  
  8786.       Reason: Attempting some SQL statement other than INSERT, DELETE,
  8787.           UPDATE, or SELECT and data follows the command indicated by a
  8788.           backslash (\) starting the next line.
  8789.  
  8790.       Remedy: Correct SQL statement.  Data can only follow a SQL statement
  8791.           that is an INSERT, DELETE, UPDATE, or SELECT.
  8792.  
  8793. 05007 TLK CTB Befehl zu gro▀ - ⁿbergangen
  8794.  
  8795.       Reason: SQLTalk has found the input line to big to handle so it is
  8796.           skipping the input line.
  8797.  
  8798.       Remedy: Modify the input line.
  8799.  
  8800. 05008 TLK ICN Ungⁿltige Cursorzahl
  8801.  
  8802.       Reason: Attempting to CONNECT or USE a cursor by number that is not
  8803.           valid.
  8804.  
  8805.       Remedy: Correct CONNECT or USE command to only use a cursor number that
  8806.           has previously been successfully connected to.
  8807.  
  8808. 05009 TLK CCI NICHT VERWENDET
  8809.  
  8810.       Reason: This is error code is currently not used by the SQLBase system.
  8811.  
  8812.       Remedy: None.  This error code should never occur.  If you get this
  8813.           error, contact your local Gupta Technologies certified
  8814.           technical support center.
  8815.  
  8816. 05010 TLK TMC Zuviele Spalten
  8817.  
  8818.       Reason: Attempting a BREAK or COMPUTE command and the number of columns
  8819.           operating on exceed the limit of 20 columns.
  8820.  
  8821.       Remedy: Correct BREAK or COMPUTE command.  The number of columns is
  8822.           limited to 20.
  8823.  
  8824. 05011 TLK CUL Memodaten k÷nnen nicht ausgeladen werden
  8825.  
  8826.       Reason: Attempting to unload data in DIF or ASCII format and the data
  8827.           contains LONG VARCHAR data.
  8828.  
  8829.       Remedy: Unload data in SQL format.  LONG VARCHAR data cannot be unloaded
  8830.           in DIF or ASCII format.
  8831.  
  8832. 05012 TLK TTW NICHT VERWENDET
  8833.  
  8834.       Reason: This is error code is currently not used by the SQLBase system.
  8835.  
  8836.       Remedy: None.  This error code should never occur.  If you get this
  8837.           error, contact your local Gupta Technologies certified
  8838.           technical support center.
  8839.  
  8840. 05013 TLK OPE Fehler beim ╓ffnen der Datei
  8841.  
  8842.       Reason: Attempting to load or unload the database from a file but the
  8843.           named file cannot be opened, or attempting a REORGANIZE command
  8844.           but the temporary file used by the reorganize routine cannot be
  8845.           opened for output on the unload step or opened for input on the
  8846.           reload step, or attempting to SAVE a report or SQL statement in
  8847.           a file for later use and the named file cannot be opened.
  8848.  
  8849.       Remedy: If the file name was specified, check that the file name is
  8850.           correct.    If the file name is correct or if its not necessary to
  8851.           specify a file name, determine why the file could not be opened.
  8852.  
  8853. 05014 TLK CFE Fehler beim Schlie▀en der Datei
  8854.  
  8855.       Reason: SQLTalk has failed in its attempt to close a file after the RUN
  8856.           of a script file or, after the EDIT of the previous SQL
  8857.           statement or, during the REORGANIZE of a database or, at the end
  8858.           of an UNLOAD operation.
  8859.  
  8860.       Remedy: Determine why the operating system would not allow the closing
  8861.           of the file.
  8862.  
  8863. 05015 TLK ITL Bezeichner ist zu lang
  8864.  
  8865.       Reason: Attempting to define an ALIAS for a column number and the ALIAS
  8866.           name is exceeds 18 characters or more generally, SQLTalk is
  8867.           attempting to parse an indentifier and the has found the
  8868.           identifier to exceed 18 characters.
  8869.  
  8870.       Remedy: Correct identifier.
  8871.  
  8872. 05016 TLK IVA Ungⁿltiges Argument
  8873.  
  8874.       Reason: Attempting to set the isolation mode and the mode setting is not
  8875.           RR (read repeatibility), CS (cursor stability), RL (release
  8876.           lock), or RO (read only) or an argument specified on the SQLTalk
  8877.           DOS command line is invalid.
  8878.  
  8879.       Remedy: Correct the isolation mode setting or the argument specified on
  8880.           the DOS command line when invoking SQLTalk.
  8881.  
  8882. 05017 TLK IVN NICHT VERWENDET
  8883.  
  8884.       Reason: This is error code is currently not used by the SQLBase system.
  8885.  
  8886.       Remedy: None.  This error code should never occur.  If you get this
  8887.           error, contact your local Gupta Technologies certified
  8888.           technical support center.
  8889.  
  8890. 05018 TLK MSL Slash (SchrΣgstrich) fehlt (z.B.Benutzer/Pa▀wort)
  8891.  
  8892.       Reason: Attempting a connect command and the forward slash is missing or
  8893.           incorrect.  A forward slash (/) is expected between the user
  8894.           name and password.
  8895.  
  8896.       Remedy: Correct connect statement.  The syntax for the connect command
  8897.           is: "CONNECT databasename N username/password" where N is the
  8898.           number assigned to this connection for later reference and
  8899.           username/password is optional.  If username/password is not
  8900.           specified then SYSADM/SYSADM is assumed.    If username/password
  8901.           is specified then both are required with a forward slash
  8902.           separating the two identifiers.
  8903.  
  8904. 05019 TLK ISC Ungⁿltiger SET-Befehl
  8905.  
  8906.       Reason: Attempting a SET command and the keyword immediately following
  8907.           the SET keyword is not recognized as a valid SET option.
  8908.  
  8909.       Remedy: Verify that the keyword following SET is a valid SET option.
  8910.  
  8911. 05020 TLK CNE Befehl endet nicht korrekt
  8912.  
  8913.       Reason: SQLTalk has determined that the command being attempted is not
  8914.           properly ended.
  8915.  
  8916.       Remedy: Verify that the command is properly ended.
  8917.  
  8918. 05021 TLK ICS Ungⁿltige Cursorgr÷▀e
  8919.  
  8920.       Reason: An invalid cursor size has been specified on a connect.
  8921.  
  8922.       Remedy: Correct cursor size on connect command.
  8923.  
  8924. 05022 TLK IVP Ungⁿltiges Pa▀wort
  8925.  
  8926.       Reason: An invalid password has been specified signing on to SQLTalk or
  8927.           attempting a connect command within SQLTalk.
  8928.  
  8929.       Remedy: Correct password.
  8930.  
  8931. 05023 TLK MRP Rechte Klammer fehlt
  8932.  
  8933.       Reason: Attempting connect command and a right parentheses is missing.
  8934.  
  8935.       Remedy: Correct connect command.
  8936.  
  8937. 05024 TLK MIC Fehlende oder ungⁿltige Cursornummer
  8938.  
  8939.       Reason: Attempting a DISCONNECT a cursor by number that is not valid.
  8940.  
  8941.       Remedy: Correct DISCONNECT command to only use a cursor number that
  8942.           has previously been successfully connected to.
  8943.  
  8944. 05025 TLK CPS Ungⁿltige Cachespeicherseitengr÷▀e
  8945.  
  8946.       Reason: An invalid number has been specified for the number of cache
  8947.           pages.
  8948.  
  8949.       Remedy: Correct the specified cache page size number.
  8950.  
  8951. 05026 TLK RFN Ungⁿltiger Laufdateiname
  8952.  
  8953.       Reason: Attempting to SAVE a report or SQL statement or attempting to
  8954.           run a script file and the file name is not valid.
  8955.  
  8956.       Remedy: Correct file name.
  8957.  
  8958. 05027 TLK TMR NICHT VERWENDET
  8959.  
  8960.       Reason: This is error code is currently not used by the SQLBase system.
  8961.  
  8962.       Remedy: None.  This error code should never occur.  If you get this
  8963.           error, contact your local Gupta Technologies certified
  8964.           technical support center.
  8965.  
  8966. 05028 TLK COR Laufdatei kann nicht ge÷ffnet werden
  8967.  
  8968.       Reason: Attempting to PRINT or RUN a script file and the specified file
  8969.           name cannot be opened.
  8970.  
  8971.       Remedy: Correct file name.
  8972.  
  8973. 05029 TLK OOO ON oder OFF-Schlⁿsselwort fehlt
  8974.  
  8975.       Reason: Attempting to set a SQLTalk option ON or OFF and the keyword is
  8976.           either missing or misspelled.
  8977.  
  8978.       Remedy: Correct command to specify ON or OFF correctly.
  8979.  
  8980. 05030 TLK QNE Angegebene Zeichenkette endet nicht korrekt
  8981.  
  8982.       Reason: A quoted string has not been properly ended.
  8983.  
  8984.       Remedy: Correct quoted string.
  8985.  
  8986. 05031 TLK QTL Angegebene Zeichenkette ist zu lang
  8987.  
  8988.       Reason: A quoted string is larger than 254 characters.
  8989.  
  8990.       Remedy: Correct quoted string.
  8991.  
  8992. 05032 TLK MQS Angegebene Zeichenkette fehlt
  8993.  
  8994.       Reason: Attempting a COLUMN command and a quoted string is expected
  8995.           after the keyword HEADING, PICTURE, or NULLS or attempting to
  8996.           execute a DOS command using the syntax "$ 'dos command'" and the
  8997.           quoted string following the dollar sign ($) is missing or
  8998.           attempting to SET NULLS globally and the quoted string following
  8999.           the NULLS keyword is missing.
  9000.  
  9001.       Remedy: Supply appropriate quoted string.
  9002.  
  9003. 05033 TLK NTL Null-Zeichenkette ist zu gro▀
  9004.  
  9005.       Reason: Attempting substitute a string for NULLS either for a particular
  9006.           column via the COLUMN command or globally via a SET NULLS
  9007.           command and the substitute string is larger than ten characters.
  9008.  
  9009.       Remedy: Reduce the size of the NULLS substitute string.
  9010.  
  9011. 05034 TLK ISH Ungⁿltiger Anzeigebefehl
  9012.  
  9013.       Reason: Attempting a SHOW command and the type of SHOW indicated by the
  9014.           keyword immediately following the SHOW is invalid or misspelled.
  9015.  
  9016.       Remedy: Correct the SHOW command.
  9017.  
  9018. 05035 TLK NSF Keine aktive Spooldatei zum Schlie▀en
  9019.  
  9020.       Reason: Attempting to SET SPOOL OFF and there is no active spool file to
  9021.           turn off.
  9022.  
  9023.       Remedy: None.  You cannot turn of a spool file if one does not exist.
  9024.  
  9025. 05036 TLK SFE Spooldatei ist bereits aktiv
  9026.  
  9027.       Reason: Attempting to set a spool file on and a spool file is already
  9028.           active.
  9029.  
  9030.       Remedy: You must turn off the active spool file before starting a new
  9031.           spool file.
  9032.  
  9033. 05037 TLK COS Spooldatei kann nicht ge÷ffnet werden
  9034.  
  9035.       Reason: Attempting to open a spool file and the open is failing.
  9036.  
  9037.       Remedy: If the spool file name was specified, check that the file name
  9038.           is correct.  If the spool file name is correct or if the spool
  9039.           file name was not specified then determine why the file could
  9040.           not be opened.
  9041.  
  9042. 05038 TLK IFN Ungⁿltiger Dateiname
  9043.  
  9044.       Reason: Attempting to BACKUP, RESTORE, PRINT TO, SET SCROLL, SET FILTER,
  9045.           SET SPOOL, or UNLOAD and the specified file name is invalid.
  9046.  
  9047.       Remedy: Correct the file name.
  9048.  
  9049. 05039 TLK MLP NICHT VERWENDET
  9050.  
  9051.       Reason: This is error code is currently not used by the SQLBase system.
  9052.  
  9053.       Remedy: None.  This error code should never occur.  If you get this
  9054.           error, contact your local Gupta Technologies certified
  9055.           technical support center.
  9056.  
  9057. 05040 TLK TMA Zuviele Argumente
  9058.  
  9059.       Reason: Too many arguments have been specified on the command line.
  9060.  
  9061.       Remedy: Correct specified arguments.
  9062.  
  9063. 05041 TLK NCF Es wurde kein Proze▀befehl gefunden
  9064.  
  9065.       Reason: SQLTalk is attempting to locate a command to process and it is
  9066.           not successfully finding a command to process.
  9067.  
  9068.       Remedy: Check source of commands and determine why no commands are found
  9069.           to process.
  9070.  
  9071. 05042 TLK MBS Vorheriger Befehl mu▀ ein Auswahlbefehl sein
  9072.  
  9073.       Reason: Attempting a BACKWARDS command and the previous command was not
  9074.           a SELECT statement.  A BACKWARDS must be preceded by the
  9075.           execution of a successful SELECT statement.
  9076.  
  9077.       Remedy: Always fetch forward via a SELECT prior to attempting a
  9078.           BACKWARDS command.
  9079.  
  9080. 05043 TLK MQN Abfragename fehlt
  9081.  
  9082.       Reason: Attempting to ERASE, EXECUTE, RETRIEVE, or STORE a stored SQL
  9083.           statement and the statement name has not been specified.
  9084.  
  9085.       Remedy: Correct command syntax so that the stored statement name is
  9086.           specified.
  9087.  
  9088. 05044 TLK CNS Befehl wurde nicht gestapelt
  9089.  
  9090.       Reason: Attempting to STORE a SQL statement and the store name already
  9091.           exists in the database.  The user is prompted with:
  9092.  
  9093.            Command already exists.  Overwrite it (Y/N)?
  9094.  
  9095.           The user gets a "Command NOT stored" message when responsing "N"
  9096.           to the above question.
  9097.  
  9098.       Remedy: Use another store command name.
  9099.  
  9100. 05045 TLK IFT Ungⁿltiger Formattyp
  9101.  
  9102.       Reason: Attempting to LOAD in other than ASCII, DIF, SQL, or WKS format
  9103.           or attempting to UNLOAD other than ALL or DATABASE or in a
  9104.           format other than ASCII, DIF, or SQL.
  9105.  
  9106.       Remedy: Correct LOAD or UNLOAD command to load only in ASCII, DIF, or
  9107.           SQL format and UNLOAD ALL or DATABASE or in formats of ASCII,
  9108.           DIF, or SQL.
  9109.  
  9110. 05046 TLK OSF Nur SQL-Formate gestatten Multitabellen
  9111.  
  9112.       Reason: Attempting to UNLOAD other than ALL, DATABASE, or in SQL format
  9113.           and mulit-table unloads are only allowed in an UNLOAD ALL,
  9114.           UNLOAD DATABASE, or UNLOAD in SQL format.
  9115.  
  9116.       Remedy: Correct UNLOAD to specify a particular table or use UNLOAD ALL
  9117.           or DATABASE or UNLOAD in SQL format.
  9118.  
  9119. 05047 TLK ULA Ausladen abgebrochen
  9120.  
  9121.       Reason: Attempting to UNLOAD or REORGANIZE and the unload file cannot
  9122.           be opened.
  9123.  
  9124.       Remedy: Determine why the unload file could not be opened.
  9125.  
  9126. 05048 TLK CUS Das Ausladen einer Systemtabelle ist nicht erlaubt
  9127.  
  9128.       Reason: Attempting to UNLOAD a system table.
  9129.  
  9130.       Remedy: Correct UNLOAD command.  System tables cannot be unloaded.
  9131.  
  9132. 05049 TLK TNE Diese Tabelle existiert nicht
  9133.  
  9134.       Reason: Attempting to load a specific table in ASCII format or unload a
  9135.           specific table in SQL format and the named table does not exist.
  9136.  
  9137.       Remedy: Modify command to correctly specify an existing table.
  9138.  
  9139. 05050 TLK UEF Unerwartetes Ende der Datei
  9140.  
  9141.       Reason: SQLTalk is reading input data or input from an input file and
  9142.           SQLTalk has unexpectedly reached the end of the file being
  9143.           processed.
  9144.  
  9145.       Remedy: Determine why the input data or input file has unexpectedly
  9146.           reached an end of file condition.
  9147.  
  9148. 05051 TLK TNM Tabellenname fehlt auf der Ladedatei
  9149.  
  9150.       Reason: Attempting to load in DIF format and the load table name is
  9151.           missing from the DIF file.
  9152.  
  9153.       Remedy: Correct LOAD file to correctly specify the load table name when
  9154.           loading in DIF format.
  9155.  
  9156. 05052 TLK VCM VekorzΣhler fehlt auf der Ladedatei
  9157.  
  9158.       Reason: Attempting to load in DIF format and the vector count is
  9159.           missing from the load file.
  9160.  
  9161.       Remedy: Correct LOAD file to correctly specify the vector count when
  9162.           loading in DIF format.
  9163.  
  9164. 05053 TLK UDT NICHT VERWENDET
  9165.  
  9166.       Reason: This is error code is currently not used by the SQLBase system.
  9167.  
  9168.       Remedy: None.  This error code should never occur.  If you get this
  9169.           error, contact your local Gupta Technologies certified
  9170.           technical support center.
  9171.  
  9172. 05054 TLK TTL NICHT VERWENDET
  9173.  
  9174.       Reason: This is error code is currently not used by the SQLBase system.
  9175.  
  9176.       Remedy: None.  This error code should never occur.  If you get this
  9177.           error, contact your local Gupta Technologies certified
  9178.           technical support center.
  9179.  
  9180. 05055 TLK IDI Ungⁿltiges Ladedatenelement wurde gefunden
  9181.  
  9182.       Reason: Attempting to load in DIF format and the load data type found
  9183.           in the load file is invalid.
  9184.  
  9185.       Remedy: Correct LOAD file to correctly specify the load data type when
  9186.           loading in DIF format.
  9187.  
  9188. 05056 TLK SDI Spezialdatenelement wurde beim Laden erwartet
  9189.  
  9190.       Reason: Attempting to load in DIF format and a special data item is
  9191.           expected in the load file but is not found.
  9192.  
  9193.       Remedy: Correct LOAD file to correctly specify special data items when
  9194.           loading in DIF format.
  9195.  
  9196. 05057 TLK ISN Ungⁿltiger Quelldateiname
  9197.  
  9198.       Reason: Attempting to load from a file but the specified file name is
  9199.           not valid.
  9200.  
  9201.       Remedy: Correct LOAD file name.
  9202.  
  9203. 05058 TLK ITP Ungⁿltige Titelparameter
  9204.  
  9205.       Reason: Setting a TTITLE (top title) or BTITLE (bottom title) on a
  9206.           SQLTalk report and the keyword immediately following the SET
  9207.           TTITLE or BTITLE keyword is invalid.
  9208.  
  9209.       Remedy: Correct TTITLE or BTITLE set command.  Immediately following
  9210.           TTITLE or BTITLE should be a title string, or the keyword ON,
  9211.           OFF, DATE, or PAGE.
  9212.  
  9213. 05059 TLK NTS Es wurden keine Tabellen spezifiziert
  9214.  
  9215.       Reason: Attempting an unload and no table names have been specified.
  9216.  
  9217.       Remedy: Identifiy some table names or specify ALL in the UNLOAD command.
  9218.  
  9219. 05060 TLK TEM Titel ⁿberschreitet die maximale Zeilenanzahl
  9220.  
  9221.       Reason: Attempting a TTITLE or BTITLE command and the command has
  9222.           specified more than three lines to the title.
  9223.  
  9224.       Remedy: Modify title so that the title is not more than three lines.
  9225.  
  9226. 05061 TLK DTN Zieltabelle wird nicht mit SQL-Format verwendet
  9227.  
  9228.       Reason: Attempting a LOAD SQL and specifying a source file name and
  9229.           a destination table name.
  9230.  
  9231.       Remedy: Modify the LOAD SQL command.  Destination table names are not
  9232.           allowed in SQL format.  The SQL statements in the LOAD file
  9233.           identify the table names to be loaded.
  9234.  
  9235. 05062 TLK MDT Name der Zieltabelle fehlt
  9236.  
  9237.       Reason: Attempting a LOAD ASCII and specifying a source file name but
  9238.           the destination table name is not specified.
  9239.  
  9240.       Remedy: Modify the LOAD ASCII command.  Destination table names are
  9241.           required when loading in ASCII format.
  9242.  
  9243. 05063 TLK ICI Ungⁿltiger Spaltenbezeichner
  9244.  
  9245.       Reason: Attempting a BREAK, COMPUTE, COLUMN, or ALIAS name command and
  9246.           the column identifier is invalid or exceeds a count of 20.
  9247.  
  9248.       Remedy: Modify command to correctly identify the column identifiers.
  9249.  
  9250. 05064 TLK HTL ▄berschrift ist zu lang
  9251.  
  9252.       Reason: Attempting to define a column heading within a COLUMN command
  9253.           and the column heading exceeds 132 characters.
  9254.  
  9255.       Remedy: Correct COLUMN command.  Column headings must be 132 characters
  9256.           or less.
  9257.  
  9258. 05065 TLK HEM ▄berschrift ⁿberschreitet die maximal erlaubte Zeilenanzahl
  9259.  
  9260.       Reason: Attempting to define a column heading within a COLUMN command
  9261.           and the number of lines defined in the column heading exceeds
  9262.           three.
  9263.  
  9264.       Remedy: Correct COLUMN command.  Column headings are restricted to a
  9265.           maximum of three lines.
  9266.  
  9267. 05066 TLK ICW Ungⁿltige Spaltenbreite
  9268.  
  9269.       Reason: Attempting to define a column WIDTH within a COLUMN command and
  9270.           the specified width is invalid, is less than one character, or
  9271.           greate than the current output line size.
  9272.  
  9273.       Remedy: Correct COLUMN command.  The WIDTH parameter must be defined
  9274.           from 1 to maximum output line size.
  9275.  
  9276. 05067 TLK ICP Ungⁿltige Spaltenparameter
  9277.  
  9278.       Reason: Attempting a COLUMN command and a specified parameter is
  9279.           invalid or misspelled.
  9280.  
  9281.       Remedy: Correct COLUMN command.  Identify and modify the invalid or
  9282.           misspelled COLUMN command parameter.
  9283.  
  9284. 05068 TLK TIL Titel zu lang
  9285.  
  9286.       Reason: Setting a TTITLE (top title) or BTITLE (bottom title) on a
  9287.           SQLTalk report and the title specified exceeds 132 characters.
  9288.  
  9289.       Remedy: Correct TTITLE or BTITLE set command.
  9290.  
  9291. 05069 TLK FCE NICHT BEHEBBARER FEHLER BEIM VERBINDEN - BEENDEN SIE DAS PROGRAMM
  9292.  
  9293.       Reason: Attempting to set a cache size or set recovery on or off and
  9294.           SQLTalk performs a disconnect and a reconnect to accomplish
  9295.           these operations.  Unfortunately, the reconnect operation has
  9296.           unexpectedly failed leaving SQLTalk in an unpredictable state.
  9297.  
  9298.       Remedy: Exit SQLTalk immediately.  Try again.
  9299.  
  9300. 05070 TLK CPT Cachespeicherseitengr÷▀e zu gro▀
  9301.  
  9302.       Reason: Attempting to set a cache size too large.
  9303.  
  9304.       Remedy: Modify SET CACHE to less cache pages than the previous attempt.
  9305.  
  9306. 05071 TLK UEV Ungⁿltiger Wert
  9307.  
  9308.       Reason: Attempting SET command and an invalid value has been specified.
  9309.  
  9310.       Remedy: Correct SET command.
  9311.  
  9312. 05072 TLK CRU Ausladedatei kann nicht entfernt werden
  9313.  
  9314.       Reason: Attempting an unload operation and the unload has failed and
  9315.           the system cannot remove the partially completed unload file.
  9316.  
  9317.       Remedy: Erase unload and determine why unload failed.
  9318.  
  9319. 05073 TLK DNE Diese Datenbank existiert nicht
  9320.  
  9321.       Reason: Attempting to connect to database via SQLTalk and the
  9322.           specified database name is not found.
  9323.  
  9324.       Remedy: Correct the database name or detemine why the database name
  9325.           has not been found.
  9326.  
  9327. 05074 TLK MEK ERRORS-Schlⁿsselwort fehlt
  9328.  
  9329.       Reason: Attempting a RUN command with DETECT ERRORS option and the
  9330.           ERRORS keyword is missing or misspelled.
  9331.  
  9332.       Remedy: Correct SQLTalk command.    The basic syntax when using the
  9333.           DETECT ERRORS syntax option is:
  9334.            RUN procedure-filename DETECT ERRORS
  9335.  
  9336. 05075 TLK IWS Kein Speicherplatz mehr beim Client vorhanden (TLK IWS)
  9337.  
  9338.       Reason: The application has run out of memory at the client workstation.
  9339.  
  9340.       Remedy: Check available memory at the client workstation.  Attempt to
  9341.           make more memory available.
  9342.  
  9343. 05075 TLK IWS Grafik ist zu gro▀
  9344.  
  9345.       Reason: A picture string has exceeded 40 characters.
  9346.  
  9347.       Remedy: Correct picture string.  Picture strings are limited to a
  9348.           maximum of 40 characters.
  9349.  
  9350. 05077 TLK IPI NICHT VERWENDET
  9351.  
  9352.       Reason: This is error code is currently not used by the SQLBase system.
  9353.  
  9354.       Remedy: None.  This error code should never occur.  If you get this
  9355.           error, contact your local Gupta Technologies certified
  9356.           technical support center.
  9357.  
  9358. 05078 TLK IAP Ungⁿltiger Justierungsparameter
  9359.  
  9360.       Reason: An ADJUST parameter has been specified in a COLUMN command
  9361.           and the ADJUST type is invalid.
  9362.  
  9363.       Remedy: Correct ADJUST parameter type.  Valid keywords allowed after
  9364.           the ADJUST keyword are LEFT, CENTER, RIGHT, or OFF.
  9365.  
  9366. 05079 TLK SAV Ungⁿltiger SAVE-Befehlsparameter
  9367.  
  9368.       Reason: A SAVE command has been specified with an invalid SAVE type.
  9369.  
  9370.       Remedy: Correct the SAVE command.  Valid keywords allowed immediately
  9371.           after the SAVE keyword are SQL, REPORT, or FILTER.
  9372.  
  9373. 05080 TLK IBP Ungⁿltiger BREAK-Befehlsparameter
  9374.  
  9375.       Reason: Invalid keyword immediately after BREAK command keyword.
  9376.  
  9377.       Remedy: Correct the BREAK command.  Valid BREAKs are either BREAK OFF or
  9378.           BREAK ON [REPORT] column-list.
  9379.  
  9380. 05081 TLK NBS Es wurden keine Breaks spezifiziert
  9381.  
  9382.       Reason: A BREAK command has been specified without specifying any
  9383.           columns to break on.
  9384.  
  9385.       Remedy: Correct the BREAK command.  A list of break columns must be
  9386.           listed or the keyword REPORT must be listed.
  9387.  
  9388. 05082 TLK CMP Ungⁿltiger COMPUTE-Befehlsparameter
  9389.  
  9390.       Reason: A COMPUTE command has been specified with an invalid aggregate
  9391.           keyword.
  9392.  
  9393.       Remedy: Correct the COMPUTE command.  A COMPUTE command must specify an
  9394.           aggregate computation of either MAX, MIN, SUM, AVG, or COUNT.
  9395.  
  9396. 05083 TLK MOF OF-Schlⁿsselwort fehlt
  9397.  
  9398.       Reason: A COMPUTE command has been specified and the keyword OF is
  9399.           missing after the aggregate computation keyword of MAX, MIN,
  9400.           SUM, AVG, or COUNT.
  9401.  
  9402.       Remedy: Correct the COMPUTE command.  The OF keyword is immediately
  9403.           followed by a list of columns to operate on.  See the SQLTalk
  9404.           Command Reference Manual for a complete explanation of the
  9405.           COMPUTE command.
  9406.  
  9407. 05084 TLK MON NICHT VERWENDET
  9408.  
  9409.       Reason: This is error code is currently not used by the SQLBase system.
  9410.  
  9411.       Remedy: None.  This error code should never occur.  If you get this
  9412.           error, contact your local Gupta Technologies certified
  9413.           technical support center.
  9414.  
  9415. 05085 TLK NBC Fⁿr diese Spalten existieren keine Breaks
  9416.  
  9417.       Reason: A COMPUTE command has specified a break-list but the columns
  9418.           specified in the break-list have not been set as break columns.
  9419.  
  9420.       Remedy: Perform BREAK command on any columns to break on.  The COMPUTE
  9421.           command can only specify columns in the break-list that have
  9422.           been established as a break column.
  9423.  
  9424. 05086 TLK INC Ungⁿltige Spaltenanzahl
  9425.  
  9426.       Reason: The RIGHT or LEFT command has been specified and an invalid
  9427.           number has been specified for the number of columns to shift
  9428.           right or left.
  9429.  
  9430.       Remedy: Correct the RIGHT or LEFT command.  A valid numeric value must
  9431.           be specified after the RIGHT or LEFT keyword to shift the
  9432.           displayed output of a SELECT command to the right or left of the
  9433.           first column.
  9434.  
  9435. 05087 TLK AAE Aliasnamen besteht bereits
  9436.  
  9437.       Reason: The specified ALIAS name already exists.
  9438.  
  9439.       Remedy: Correct the COLUMN command to specify a new and unique ALIAS
  9440.           name for the column indicated.
  9441.  
  9442. 05088 TLK NPF Es wurde keine frⁿhere Datei fⁿr $DATA gefunden
  9443.  
  9444.       Reason: A $DATA keyword has been found but no previous file exists.
  9445.  
  9446.       Remedy: The keyword $DATA is used to signal input from another source.
  9447.           This source is always a previous file, which can be a text file
  9448.           or the keyboard.    When this keyword is encounted, SQLTalk looks
  9449.           for a backslash, followed by data lines, in the  previous  file.
  9450.           Correct the scenario so that a previous file exists.
  9451.  
  9452. 05089 TLK NDF Es wurden keine Daten in frⁿherer Datei gefunden
  9453.  
  9454.       Reason: A $DATA keyword has been found but no data has been found in the
  9455.           previous file.
  9456.  
  9457.       Remedy: The keyword $DATA is used to signal input from another source.
  9458.           This source is always a previous file, which can be a text file
  9459.           or the keyboard.    When this keyword is encounted, SQLTalk looks
  9460.           for a backslash, followed by data lines, in the previous file.
  9461.           Correct the previous file referenced back to so that a backslash
  9462.           exists followed by the data lines.
  9463.  
  9464. 05090 TLK COP Drucker kann fⁿr Bericht nicht ge÷ffnet werden
  9465.  
  9466.       Reason: Attempting a PRINT command and the printer cannot be opened for
  9467.           the printing of the report.
  9468.  
  9469.       Remedy: Verify that the printer is on and enabled.  Retry.
  9470.  
  9471. 05091 TLK STS Gr÷▀e kleiner als Spaltenbreite
  9472.  
  9473.       Reason: Attempting to set the linesize smaller than a largest specified
  9474.           column WIDTH.
  9475.  
  9476.       Remedy: Reduce size of largest column width to accomodate new linesize.
  9477.           The column width is set with the COLUMN command.
  9478.  
  9479. 05092 TLK CCD Cursornummer steht mit Datenbanknamen in Konflikt
  9480.  
  9481.       Reason: Attempting to disconnect a cursor from a database and the
  9482.           database name specified does not correspond to the database the
  9483.           cursor number is connected to.
  9484.  
  9485.       Remedy: Correct the DISCONNECT command.  Verify that the database name
  9486.           is for the specified cursor number.
  9487.  
  9488. 05093 TLK CIF Eingabedatei kann nicht ge÷ffnet werden
  9489.  
  9490.       Reason: Attempting to open an existing file and a failure has occurred.
  9491.  
  9492.       Remedy: Determine and correct the cause of the open file failure.
  9493.           Verify that the specified file exists.  Verify the number of
  9494.           files allowed open for the operating system permits the
  9495.           additional file, that is, check the FILES= configuration
  9496.           parameter setting.
  9497.  
  9498. 05094 TLK MST Quell- oder Zieltabellennamen fehlt
  9499.  
  9500.       Reason: Attempting a COPY command and the specified source or
  9501.           destination table does not exist.
  9502.  
  9503.       Remedy: Verify that the source table exists and is correctly specified.
  9504.           If the source table is correct, verify that the destination
  9505.           table exists and is correctly specified.    The destination table
  9506.           must exist.  The COPY command does not create the destination
  9507.           table, it must previously exist.
  9508.  
  9509. 05095 TLK ISI NICHT VERWENDET
  9510.  
  9511.       Reason: This is error code is currently not used by the SQLBase system.
  9512.  
  9513.       Remedy: None.  This error code should never occur.  If you get this
  9514.           error, contact your local Gupta Technologies certified
  9515.           technical support center.
  9516.  
  9517. 05096 TLK MTO TO-Schlⁿsselwort fehlt
  9518.  
  9519.       Reason: The TO keyword is missing in a COPY command.
  9520.  
  9521.       Remedy: Correct COPY command.  The general syntax is COPY source-table
  9522.           TO destination-table.  See the SQLTalk Command Reference Manual
  9523.           for more information on the COPY command.
  9524.  
  9525. 05097 TLK NPC Es wurde kein vorhergehender Befehl gefunden
  9526.  
  9527.       Reason: The specified LIST command should display the most recently
  9528.           entered SQL statement but no previous command can be found.
  9529.  
  9530.       Remedy: None.  No previous command exists to be listed.
  9531.  
  9532. 05098 TLK LNF Zeilennummer wurde nicht gefunden
  9533.  
  9534.       Reason: The LIST command specified a non-existent line number.
  9535.  
  9536.       Remedy: Correct the LIST command.  Specify a valid line number.
  9537.  
  9538. 05099 TLK CDC NICHT VERWENDET
  9539.  
  9540.       Reason: This is error code is currently not used by the SQLBase system.
  9541.  
  9542.       Remedy: None.  This error code should never occur.  If you get this
  9543.           error, contact your local Gupta Technologies certified
  9544.           technical support center.
  9545.  
  9546. 05100 TLK CEF Bearbeitungsdatei kann nicht ge÷ffnet werden
  9547.  
  9548.       Reason: Attempting to EDIT a file and the specified file cannot be
  9549.           opened.
  9550.  
  9551.       Remedy: Determine and correct the cause of the open file failure.
  9552.           Verify that the specified file exists.  Verify the number of
  9553.           files allowed open for the operating system permits the
  9554.           additional file, that is, check the FILES= configuration
  9555.           parameter setting.
  9556.  
  9557. 05101 TLK EDI Editor ist nicht verfⁿgbar
  9558.  
  9559.       Reason: Attempting to EDIT a file and an editor is not available.
  9560.  
  9561.       Remedy: An editor can be made available by setting the environment
  9562.           variable EDITOR.    See the SQLTalk Command Reference Manual for
  9563.           more information on the EDIT command.
  9564.  
  9565. 05102 TLK DEE Fehler bei DOS-Ausfⁿhrung
  9566.  
  9567.       Reason: Attempting to execute a DOS command from within SQLTalk and
  9568.           the operation has failed.
  9569.  
  9570.       Remedy: Correct the DOS operation.
  9571.  
  9572. 05103 TLK MJK NICHT VERWENDET
  9573.  
  9574.       Reason: This is error code is currently not used by the SQLBase system.
  9575.  
  9576.       Remedy: None.  This error code should never occur.  If you get this
  9577.           error, contact your local Gupta Technologies certified
  9578.           technical support center.
  9579.  
  9580. 05104 TLK JFN NICHT VERWENDET
  9581.  
  9582.       Reason: This is error code is currently not used by the SQLBase system.
  9583.  
  9584.       Remedy: None.  This error code should never occur.  If you get this
  9585.           error, contact your local Gupta Technologies certified
  9586.           technical support center.
  9587.  
  9588. 05105 TLK FIL Rollmodus ist bereits aktiv
  9589.  
  9590.       Reason: Attempting to set SCROLL mode on and its already on.
  9591.  
  9592.       Remedy: None.  Cannot turn on SCROLL mode if SCROLL mode is already
  9593.           active.
  9594.  
  9595. 05106 TLK SSS NICHT VERWENDET
  9596.  
  9597.       Reason: This is error code is currently not used by the SQLBase system.
  9598.  
  9599.       Remedy: None.  This error code should never occur.  If you get this
  9600.           error, contact your local Gupta Technologies certified
  9601.           technical support center.
  9602.  
  9603. 05107 TLK CSM Cachespeicherseiten k÷nnen in Mehrbenutzerdatenbank nicht eingestellt werden
  9604.  
  9605.       Reason: Attempting to set the cache size with a multi-user database.
  9606.  
  9607.       Remedy: None.  The database cache size cannot be set from a remote
  9608.           client workstation.  The database cache size can only be set at
  9609.           the database server.  The database cache size can only be set on
  9610.           a single user version of the database.
  9611.  
  9612. 05108 TLK SP1 Cachespeicherseiten k÷nnen nicht eingestellt werden, wenn sie mehr als einmal verbunden wurden
  9613.  
  9614.       Reason: Attempting to set the database cache size and you are connected
  9615.           to the database more than once.
  9616.  
  9617.       Remedy: Disconnect all cursors but your current cursor.  You can only
  9618.           set the database cache while being connected once to a single
  9619.           user database.
  9620.  
  9621. 05109 TLK DCC Aktueller Cursor kann nicht deaktiviert werden
  9622.  
  9623.       Reason: Cannot disconnect your currently connected cursor.
  9624.  
  9625.       Remedy: USE a differenct cursor before attempting to disconnect the
  9626.           specified cursor.  You cannot disconnect your last remaining
  9627.           cursor.  To perform database operation without a connection,
  9628.           exit SQLTalk and restart SQLTalk with the NOCONNECT option.
  9629.  
  9630. 05110 TLK BND Bindevariabeln sind ohne Bindedaten
  9631.  
  9632.       Reason: Attempting to execute a command that has bind variables but data
  9633.           after the command has been found to be bound.
  9634.  
  9635.       Remedy: Verify that a backslash after the command exists.  The backslash
  9636.           indicates the start of the data to be bound.
  9637.  
  9638. 05111 TLK MBD NICHT VERWENDET
  9639.  
  9640.       Reason: This is error code is currently not used by the SQLBase system.
  9641.  
  9642.       Remedy: None.  This error code should never occur.  If you get this
  9643.           error, contact your local Gupta Technologies certified
  9644.           technical support center.
  9645.  
  9646. 05112 TLK CTS Befehlsgr÷▀e ist zu klein
  9647.  
  9648.       Reason: Attempting to set the command size too small.
  9649.  
  9650.       Remedy: None.  The command size should not be modified.
  9651.  
  9652. 05113 TLK CAC Kein Speicher mehr beim Client vorhanden (TLK CAC)
  9653.  
  9654.       Reason: The application has run out of memory at the client workstation.
  9655.  
  9656.       Remedy: Check available memory at the client workstation.  Attempt to
  9657.           make more memory available.
  9658.  
  9659. 05114 TLK ILL Eingabe ist fⁿr Ladepuffer zu lang
  9660.  
  9661.       Reason: Attempting a load and the input is too long for the current
  9662.           load buffer.
  9663.  
  9664.       Remedy: Modify load file.
  9665.  
  9666. 05115 TLK CAL Kein Speicher mehr beim Client vorhanden (TLK CAL)
  9667.  
  9668.       Reason: The application has run out of memory at the client workstation.
  9669.  
  9670.       Remedy: Check available memory at the client workstation.  Attempt to
  9671.           make more memory available.
  9672.  
  9673. 05116 TLK DTL Diff-Tabellenname ist zu lang
  9674.  
  9675.       Reason: Attempting a LOAD DIF command and the table name is too large.
  9676.  
  9677.       Remedy: Correct LOAD DIF command by specifying a valid table name.
  9678.  
  9679. 05117 TLK CUB Kein Speicher mehr beim Client vorhanden(TLK CUB)
  9680.  
  9681.       Reason: The application has run out of memory at the client workstation.
  9682.  
  9683.       Remedy: Check available memory at the client workstation.  Attempt to
  9684.           make more memory available.
  9685.  
  9686. 05118 TLK MCK NICHT VERWENDET
  9687.  
  9688.       Reason: This is error code is currently not used by the SQLBase system.
  9689.  
  9690.       Remedy: None.  This error code should never occur.  If you get this
  9691.           error, contact your local Gupta Technologies certified
  9692.           technical support center.
  9693.  
  9694. 05119 TLK IDN Ungⁿltiger Datenbankname
  9695.  
  9696.       Reason: The specified database name is invalid.
  9697.  
  9698.       Remedy: Correct the command by specifying a valid database name.
  9699.  
  9700. 05120 TLK ITN Ungⁿltiger Tabellenname
  9701.  
  9702.       Reason: The specified table name is invalid.
  9703.  
  9704.       Remedy: Correct the command by specifying a valid table name.
  9705.  
  9706. 05121 TLK NSC Kein Speicher mehr beim Client vorhanden (TLK NSC)
  9707.  
  9708.       Reason: The application has run out of memory at the client workstation.
  9709.  
  9710.       Remedy: Check available memory at the client workstation.  Attempt to
  9711.           make more memory available.
  9712.  
  9713. 05122 TLK CPO Drucken kann fⁿr Untertitel nicht ausgeschaltet werden
  9714.  
  9715.       Reason: Attempting to turn off PRINT for a column that has been
  9716.           specified with SUBTITLE on.
  9717.  
  9718.       Remedy: None.  Columns defined with SUBTITLE on must be printed, that
  9719.           is, they must defined with PRINT on.
  9720.  
  9721. 05123 TLK TND Tabelle in Verzeichnis nicht gefunden
  9722.  
  9723.       Reason: Attempting to unload a non-existent table.
  9724.  
  9725.       Remedy: Verify the correct spelling of the table and verify that the
  9726.           table exists.
  9727.  
  9728. 05124 TLK MDB DATABASE-Schlⁿsselwort fehlt
  9729.  
  9730.       Reason: Attempting a CHECK DATABASE, INSTALL DATABASE, or DEINSTALL
  9731.           DATABASE and the DATABASE keyword is missing or misspelled.
  9732.  
  9733.       Remedy: Correct the command by properly specifying the DATABASE keyword.
  9734.  
  9735. 05125 TLK SRV SERVER-Schlⁿsselwort fehlt
  9736.  
  9737.       Reason: Attempting a SHOW DATABASES ON SERVER server-id command and the
  9738.           SERVER keyword is missing or misspelled.
  9739.  
  9740.       Remedy: Correct the command by properly specifying the SERVER keyword.
  9741.  
  9742. 05126 TLK ISV NICHT VERWENDET
  9743.  
  9744.       Reason: This is error code is currently not used by the SQLBase system.
  9745.  
  9746.       Remedy: None.  This error code should never occur.  If you get this
  9747.           error, contact your local Gupta Technologies certified
  9748.           technical support center.
  9749.  
  9750. 05127 TLK MDS DATABASES-Schlⁿsselwort fehlt
  9751.  
  9752.       Reason: Attempting a SHOW DATABASES command and the DATABASES keyword is
  9753.           missing or misspelled.
  9754.  
  9755.       Remedy: Correct the command by properly specifying the DATABASES
  9756.           keyword.
  9757.  
  9758. 05128 TLK NSA mu▀ SYSADM sein, um Datenbank auszuladen
  9759.  
  9760.       Reason: Only SYSADM can perform the UNLOAD DATABASE command.
  9761.  
  9762.       Remedy: None.  You must have SYSADM database authority to UNLOAD an
  9763.           entire database.
  9764.  
  9765. 05129 TLK NCD NICHT VERWENDET
  9766.  
  9767.       Reason: This is error code is currently not used by the SQLBase system.
  9768.  
  9769.       Remedy: None.  This error code should never occur.  If you get this
  9770.           error, contact your local Gupta Technologies certified
  9771.           technical support center.
  9772.  
  9773. 05130 TLK 001 NICHT VERWENDET
  9774.  
  9775.       Reason: This is error code is currently not used by the SQLBase system.
  9776.  
  9777.       Remedy: None.  This error code should never occur.  If you get this
  9778.           error, contact your local Gupta Technologies certified
  9779.           technical support center.
  9780.  
  9781. 05131 TLK SCN Auswahllistenelement ist kein einfacher Spaltenname
  9782.  
  9783.       Reason: Attempting a SHOW SELECTLISTNAME command and the select list
  9784.           elements are not simple column names, but rather an expression
  9785.           or constant, and therefore it cannot be displayed.
  9786.  
  9787.       Remedy: None.  Expressions and constants cannot be displayed with the
  9788.           SHOW SELECTLISTNAME command.
  9789.  
  9790. 05132 TLK MFC FROM <Verzeichnis>-Klausel fehlt
  9791.  
  9792.       Reason: Attempting a RESTORE command and the FROM directory-name clause
  9793.           is missing.
  9794.  
  9795.       Remedy: Correct RESTORE command by properly specifying the FROM
  9796.           directory-name clause.
  9797.  
  9798. 05133 TLK MTC TO <Datenbank>-Klausel fehlt
  9799.  
  9800.       Reason: Attempting a RESTORE command and the TO dataname-name clause is
  9801.           missing.
  9802.  
  9803.       Remedy: Correct RESTORE command by properly specifying the TO
  9804.           database-name clause.
  9805.  
  9806. 05134 TLK SSC SET SERVER-Befehl mu▀ dieser Operation vorausgehen
  9807.  
  9808.       Reason: Attempting to perform a database administrative function and a
  9809.           database server connection has not been established.
  9810.  
  9811.       Remedy: Perform a SET SERVER command to establish connection to a remote
  9812.           database server before attempting any database administrative
  9813.           function.
  9814.  
  9815. 05135 TLK 002 NICHT VERWENDET
  9816.  
  9817.       Reason: This is error code is currently not used by the SQLBase system.
  9818.  
  9819.       Remedy: None.  This error code should never occur.  If you get this
  9820.           error, contact your local Gupta Technologies certified
  9821.           technical support center.
  9822.  
  9823. 05136 TLK 003 NICHT VERWENDET
  9824.  
  9825.       Reason: This is error code is currently not used by the SQLBase system.
  9826.  
  9827.       Remedy: None.  This error code should never occur.  If you get this
  9828.           error, contact your local Gupta Technologies certified
  9829.           technical support center.
  9830.  
  9831. 05137 TLK BDT Fehlerhafte Datum/Zeit-Folge; MM/DD/YY HH:MM:SS wird erwartet
  9832.  
  9833.       Reason: Attempting a ROLLFORWARD command to a specified date and time
  9834.           that does not conform to the form of "mm/dd/yy hh:mm:ss".
  9835.  
  9836.       Remedy: Correct the ROLLFORWARD command by specifying a date and time
  9837.           that conforms to the format of "mm/dd/yy hh:mm:ss".
  9838.  
  9839. 05138 TLK BTE BACKUP, TIME oder END wird erwartet
  9840.  
  9841.       Reason: Attempting a ROLLFORWARD command and the keyword BACKUP, TIME,
  9842.           or END is expected immediately after the TO keyword.
  9843.  
  9844.       Remedy: Correct the ROLLFORWARD command by specifying a valid keyword
  9845.           after the TO keyword or eithr BACKUP, TIME, or END.
  9846.  
  9847. 05139 TLK IVS Ungⁿltiger Servername
  9848.  
  9849.       Reason: Attempting a SET SERVER command and the speciified server name
  9850.           is either invalid or larger than 8 characters.
  9851.  
  9852.       Remedy: Correct the SET SERVER command by specifying a valid server
  9853.           name.
  9854.  
  9855. 05140 TLK RLE RELEASE LOG wird erwartet
  9856.  
  9857.       Reason: Attempting a RELEASE LOG command and the mandatory LOG keyword
  9858.           is either missing or misspelled.
  9859.  
  9860.       Remedy: Correct the RELEASE LOG command by properly specifying the
  9861.           command as RELEASE LOG.
  9862.  
  9863. 05141 TLK DOV NICHT VERWENDET
  9864.  
  9865.       Reason: This is error code is currently not used by the SQLBase system.
  9866.  
  9867.       Remedy: None.  This error code should never occur.  If you get this
  9868.           error, contact your local Gupta Technologies certified
  9869.           technical support center.
  9870.  
  9871. 05142 TLK OOS Nur ON SERVER oder ON CLIENT ist erlaubt
  9872.  
  9873.       Reason: Attempting a BACKUP or RESTORE command and the keyword after the
  9874.           ON keyword can only be SERVER or CLIENT.
  9875.  
  9876.       Remedy: Correct the BACKUP or RESTORE command by properly specifying the
  9877.           ON clause as either ON SERVER or ON CLIENT.
  9878.  
  9879. 05143 TLK MPE NICHT VERWENDET
  9880.  
  9881.       Reason: This is error code is currently not used by the SQLBase system.
  9882.  
  9883.       Remedy: None.  This error code should never occur.  If you get this
  9884.           error, contact your local Gupta Technologies certified
  9885.           technical support center.
  9886.  
  9887. 05144 TLK RSM Ergebnismengenmodus mu▀ aktiv sein, um Restriktionen zu setzen
  9888.  
  9889.       Reason: Attempting to SET RESTRICTION mode while not in SCOLL mode.
  9890.  
  9891.       Remedy: Restriction mode can only be set after turning on scroll mode,
  9892.           that is, SET SCROLL ON.
  9893.  
  9894. 05145 TLK TMB Zuviele Bindedaten
  9895.  
  9896.       Reason: The number of data items read exceeds the number of bind
  9897.           variables specified.
  9898.  
  9899.       Remedy: Correct either the SQL statement or the bind data being read so
  9900.           that the number of bind variables matches the number of data
  9901.           elements.
  9902.  
  9903. 05146 TLK IDT Ungⁿltiger Datentyp
  9904.  
  9905.       Reason: The $DATATYPES line specified an invalid data type.
  9906.  
  9907.       Remedy: Correct the $DATATYPES line so that a data types are valid.
  9908.  
  9909. 05147 TLK IDA Ungⁿltige Daten fⁿr spezifizierten Datentyp
  9910.  
  9911.       Reason: Invalid data has been found for the specified data types.
  9912.  
  9913.       Remedy: Correct data so that it matches the specified data types.
  9914.  
  9915. 05148 TLK IUN Ungⁿltiger Benutzername
  9916.  
  9917.       Reason: A user name has been entered that exceeds 8 characters.
  9918.  
  9919.       Remedy: Correct the user name.
  9920.  
  9921. 05149 TLK NOF NICHT VERWENDET
  9922.  
  9923.       Reason: This is error code is currently not used by the SQLBase system.
  9924.  
  9925.       Remedy: None.  This error code should never occur.  If you get this
  9926.           error, contact your local Gupta Technologies certified
  9927.           technical support center.
  9928.  
  9929. 05150 TLK PWN NICHT VERWENDET
  9930.  
  9931.       Reason: This is error code is currently not used by the SQLBase system.
  9932.  
  9933.       Remedy: None.  This error code should never occur.  If you get this
  9934.           error, contact your local Gupta Technologies certified
  9935.           technical support center.
  9936.  
  9937. 05151 TLK IQS Angegebenes Datenfeld ist ungⁿltig
  9938.  
  9939.       Reason: This error is currently undocumented.
  9940.  
  9941.       Remedy: Contact your local Gupta Technologies certified technical
  9942.           support center for assistance.
  9943.  
  9944. 05152 TLK CNL Der eingestellte Cursor wird nicht mehr unterstⁿtzt
  9945.  
  9946.       Reason: The SET CURSOR command is no longer supported.
  9947.  
  9948.       Remedy: None.  The SET CURSOR command is not supported.
  9949.  
  9950. 05153 TLK ICO Ungⁿltige Spaltenzahl
  9951.  
  9952.       Reason: Attempting a LOAD DIF command and a column number in the DIF
  9953.           file format is invalid.
  9954.  
  9955.       Remedy: Correct the DIF file attempting to be loaded.
  9956.  
  9957. 05154 TLK STL Der gestapelte Befehlsname ist zu lang
  9958.  
  9959.       Reason: Attempting a STORE command and the command name exceeds 18
  9960.           characters.
  9961.  
  9962.       Remedy: Correct the STORE command by specifying a valid command name
  9963.           that does not exceed 18 characters.
  9964.  
  9965. 05155 TLK CTL Der Name des Besitzers ist zu lang
  9966.  
  9967.       Reason: Attempting a STORE command and the creator name exceeds 8
  9968.           characters.
  9969.  
  9970.       Remedy: Correct the STORE command by specifying a valid creator name
  9971.           that does not exceed 8 characters.
  9972.  
  9973. 05156 TLK JOR SET/SHOW/APPLY JOURNAL-Befehle wurden deinstalliert
  9974.  
  9975.       Reason: Attempting a SET JOURNAL, SHOW JOURNAL, or APPLY JOURNAL command
  9976.           and these commands are no longer supported.
  9977.  
  9978.       Remedy: None.  Journalling is no longer supported in SQLBase 4.0 or
  9979.           later.
  9980.  
  9981. 05157 TLK ENM Eine Zahl wird erwartet
  9982.  
  9983.       Reason: Attempting a SET statement and the integer-constant that was
  9984.           expected is invalid.
  9985.  
  9986.       Remedy: Correct the SET statement by specifying a valid
  9987.           integer-constant.
  9988.  
  9989. 05158 TLK INV Ungⁿltige Versions-Zeichenkette
  9990.  
  9991.       Reason: Attempting a SET LOADVERSION command and an invalid version
  9992.           string has been found.
  9993.  
  9994.       Remedy: Correct the SET LOADVERSION by specifying a valid version
  9995.           string.
  9996.  
  9997. 05159 TLK DLS DATABASE, LOGS, oder SNAPSHOT wird erwartet
  9998.  
  9999.       Reason: Attempting a RESTORE command and the keyword DATABASE, LOGS, or
  10000.           SNAPSHOT was not specified after the RESTORE keyword.
  10001.  
  10002.       Remedy: Correct the RESTORE command by specifying either a RESTORE of
  10003.           DATABASE, LOGS, or SNAPSHOT.
  10004.  
  10005. 05160 TLK NPR Nicht druckbares Zeichen wurde gefunden
  10006.  
  10007.       Reason: Attempting an UNLOAD and a non-printable data has been found in
  10008.           a column that prevents it from being unloaded.
  10009.  
  10010.       Remedy: This column cannot be unloaded.  Possibly create a view that
  10011.           excludes either this row or column and unload from that view.
  10012.  
  10013. 05161 TLK OOD ON, OFF oder DEFAULT-Schlⁿsselworte fehlen
  10014.  
  10015.       Reason: Attempting to SET READONLY to something other than ON, OFF, or
  10016.           DEFAULT.
  10017.  
  10018.       Remedy: Correct the SET READONLY command by properly specifying either
  10019.           ON, OFF, or DEFAULT.
  10020.  
  10021. 05162 TLK MSN Servername fehlt
  10022.  
  10023.       Reason: Attempting a SHOW DATABASES command with the ON SERVER clause
  10024.           and the server name has not been found.
  10025.  
  10026.       Remedy: Correct the SHOW DATABASES command by properly specifying a
  10027.           valid server name such as "SHOW DATABASE ON SERVER myserver".
  10028.  
  10029. 05163 TLK NCN Keine CONNECTs wurden bisher ausgefⁿhrt. Dieser Befehl ben÷tigt eine Datenbankverbindung
  10030.  
  10031.       Reason: Attempting a SQLTalk command that requires a valid connection to
  10032.           a specific database.
  10033.  
  10034.       Remedy: Perform a connect operation or enter SQLTalk by entering the
  10035.           database name, user name, and password to establish a connection
  10036.           to a database.  To get this error, you probably entered SQLTalk
  10037.           with the SQLTalk NOCONNECT option and are now attempting a
  10038.           command that requires a valid connection.
  10039.  
  10040. 05164 TLK CAB Befehl wurde auf Weisung des Benutzers hin abgebrochen
  10041.  
  10042.       Reason: Command has been terminated via user intervention
  10043.  
  10044.       Remedy: None.  Informational only.  The command was stopped at the
  10045.           user's request.
  10046.  
  10047. 05165 TLK PEP Vorbereitung wird vor der Aktion Einlesen erwartet
  10048.  
  10049.       Reason: Attempting to fetch data and no SQL statement has been compiled.
  10050.  
  10051.       Remedy: PREPARE a SQL statement before doing a PERFORM or FETCH
  10052.           operation.
  10053.  
  10054. 05166 TLK NOP NICHT VERWENDET
  10055.  
  10056.       Reason: This is error code is currently not used by the SQLBase system.
  10057.  
  10058.       Remedy: None.  This error code should never occur.  If you get this
  10059.           error, contact your local Gupta Technologies certified
  10060.           technical support center.
  10061.  
  10062. 05167 TLK UWF NICHT VERWENDET
  10063.  
  10064.       Reason: This is error code is currently not used by the SQLBase system.
  10065.  
  10066.       Remedy: None.  This error code should never occur.  If you get this
  10067.           error, contact your local Gupta Technologies certified
  10068.           technical support center.
  10069.  
  10070. 05168 TLK FWF Fehler beim Schreiben in Datei
  10071.  
  10072.       Reason: Attempting to write to a file and a disk write failure has
  10073.           occurred.
  10074.  
  10075.       Remedy: Determine and correct the cause of the disk write failure.  Most
  10076.           commonly, it may be because you have run out of available disk
  10077.           space.  If sufficient disk space is available, then run a check
  10078.           disk utility (CHKDSK) for the current operating system to verify
  10079.           the status of the disk.
  10080.  
  10081. 05169 TLK ICH Ungⁿltiges Zeichen
  10082.  
  10083.       Reason: An invalid character has been found in the input stream.
  10084.  
  10085.       Remedy: Correct invalid character.
  10086.  
  10087. 05170 TLK NIW Dieses Leistungsmerkmal wird von Windows nicht unterstⁿtzt
  10088.  
  10089.       Reason: Attempting a DOS ($) command or attempting to EDIT a file from
  10090.           within SQLTalk and these features are not supported under the
  10091.           Microsoft Windows environment.
  10092.  
  10093.       Remedy: None.  DOS commands and the EDIT command is not supported from
  10094.           SQLTalk under Microsoft Windows.
  10095.  
  10096. 05171 TLK UDS UNLOAD DATABASE wird nur fⁿr SQLBase unterstⁿtzt
  10097.  
  10098.       Reason: This error is currently undocumented.
  10099.  
  10100.       Remedy: Contact your local Gupta Technologies certified technical
  10101.           support center for assistance.
  10102.  
  10103. 05172 TLK MEQ Anfⁿhrungszeichen am Ende fehlt
  10104.  
  10105.       Reason: This error is currently undocumented.
  10106.  
  10107.       Remedy: Contact your local Gupta Technologies certified technical
  10108.           support center for assistance.
  10109.  
  10110. 05173 TLK MCM Teilungskomma fehlt
  10111.  
  10112.       Reason: This error is currently undocumented.
  10113.  
  10114.       Remedy: Contact your local Gupta Technologies certified technical
  10115.           support center for assistance.
  10116.  
  10117. 05174 TLK IVC Codeseite stimmt nicht ⁿberein; Prⁿfen Sie Ihre Datei SQL.INI uand code.pag
  10118.  
  10119.       Reason: This error is currently undocumented.
  10120.  
  10121.       Remedy: Contact your local Gupta Technologies certified technical
  10122.           support center for assistance.
  10123.  
  10124. 05175 TLK MSF Diese Datenbanksitzung existiert nicht; Spooldateiname wird ben÷tigt
  10125.  
  10126.       Reason: Invoked SQLTalk with the NOCONNECT option (i.e., the  database
  10127.           connection does not exist) and the  spool  file  name  is  not
  10128.           specified.
  10129.  
  10130.       Remedy: Specify spool file name or make a database  connection  before
  10131.           issuing the command SET SPOOL ON.
  10132.  
  10133. 05176 TLK RCV Datenbank ist aktiv mit RECOVERY ON
  10134.  
  10135.       Reason: RECOVERY can be disabled only before the database has been
  10136.           changed.
  10137.  
  10138.       Remedy: SET RECOVERY must be the first command in an SQLTALK session.
  10139.  
  10140.  
  10141.  
  10142. These DB2 error messages and error message numbers were obtained from the
  10143. IBM DB2 Reference Manual (Order Number: SC26-4078), Appendix B., SQL Return
  10144. Codes.  Some lengthy messages have been condensed and/or paraphrased.  Some
  10145. messages refer to the DB2 reference manual, because the text could not
  10146. reasonably be represented in a single line message.
  10147.  
  10148. A few messages, for example, numbers 6001 - 6006, are not DB2 messages, but
  10149. are generated by the CICS transaction which communicates with DB2.  These
  10150. messages are emitted when the CICS transaction detects a user error.
  10151.  
  10152.  
  10153. 06001 DB2 001 Ungⁿltige NetzwerkMeldung oder falsche Meldungversion
  10154.  
  10155.       Reason: There are two possible causes for this problem.  First, SQLHost
  10156.           may not be recognizing the router and SQLGateway versions or the
  10157.           router and SQLGateway products are incompatible.    Secondly, an
  10158.           invalid operation is possibly being required from SQLHost.
  10159.  
  10160.       Remedy: If you are attempting to connect to a database and get this
  10161.           error, then its probably because the software versions of the
  10162.           router and SQLGateway do not match.  An invalid message may be
  10163.           the result of a garbled message from CICS which caused SQLHost
  10164.           to issue this error code.  If this problem occurs repeatedly, an
  10165.           APPC trace may be informative.
  10166.  
  10167. 06002 DB2 002 Zuviele DB2-Cursor
  10168.  
  10169.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10170.           Reference Manual, Appendix B for an Explanation of this error.
  10171.  
  10172.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10173.           Reference Manual, Appendix B for the recommended System Action
  10174.           or Programmer Response for this error.
  10175.  
  10176. 06003 DB2 003 Diese Operation ist ungⁿltig nach ROLLBACK oder COMMIT
  10177.  
  10178.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10179.           Reference Manual, Appendix B for an Explanation of this error.
  10180.  
  10181.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10182.           Reference Manual, Appendix B for the recommended System Action
  10183.           or Programmer Response for this error.
  10184.  
  10185. 06004 DB2 004 Cursor wurde fⁿr Trennen nicht gefunden
  10186.  
  10187.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10188.           Reference Manual, Appendix B for an Explanation of this error.
  10189.  
  10190.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10191.           Reference Manual, Appendix B for the recommended System Action
  10192.           or Programmer Response for this error.
  10193.  
  10194. 06005 DB2 005 Host-Variable zum Ausfⁿhren oder Lesen von Memo wurde nicht gefunden
  10195.  
  10196.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10197.           Reference Manual, Appendix B for an Explanation of this error.
  10198.  
  10199.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10200.           Reference Manual, Appendix B for the recommended System Action
  10201.           or Programmer Response for this error.
  10202.  
  10203. 06006 DB2 006 Cursor ist fⁿr Einlesen nicht ge÷ffnet
  10204.  
  10205.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10206.           Reference Manual, Appendix B for an Explanation of this error.
  10207.  
  10208.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10209.           Reference Manual, Appendix B for the recommended System Action
  10210.           or Programmer Response for this error.
  10211.  
  10212. 06007 DB2 007 Aussage enthΣlt ein unerlaubtes Zeichen
  10213.  
  10214.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10215.           Reference Manual, Appendix B for an Explanation of this error.
  10216.  
  10217.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10218.           Reference Manual, Appendix B for the recommended System Action
  10219.           or Programmer Response for this error.
  10220.  
  10221. 06010 DB2 010 Zeichenkettenkonstante hat kein Ende
  10222.  
  10223.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10224.           Reference Manual, Appendix B for an Explanation of this error.
  10225.  
  10226.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10227.           Reference Manual, Appendix B for the recommended System Action
  10228.           or Programmer Response for this error.
  10229.  
  10230. 06084 DB2 084 Unakzeptable SQL-Aussage
  10231.  
  10232.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10233.           Reference Manual, Appendix B for an Explanation of this error.
  10234.  
  10235.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10236.           Reference Manual, Appendix B for the recommended System Action
  10237.           or Programmer Response for this error.
  10238.  
  10239. 06100 DB2 100 Zeile wurde nicht gefunden oder Abfrageergebnis besteht aus einer leeren Tabelle
  10240.  
  10241.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10242.           Reference Manual, Appendix B for an Explanation of this error.
  10243.  
  10244.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10245.           Reference Manual, Appendix B for the recommended System Action
  10246.           or Programmer Response for this error.
  10247.  
  10248. 06101 DB2 101 Diese Aussage ist zu lang oder zu komplex
  10249.  
  10250.       Reason: The SQL statement has caused an internal limitation of SQL to be
  10251.           exceeded.  The amount of code required to process the SQL
  10252.           statement is greater than will fit in the allocated storage
  10253.           area.  This will occur if the statement is longer than 8192
  10254.           characters.  Some of the other causes are if the command:
  10255.  
  10256.           (1) contains a number of operations, especially operations
  10257.           involving decimal or floating point numbers.
  10258.  
  10259.           (2) involves a number of conversions between different data
  10260.           types.
  10261.  
  10262.           (3) involves inserting a number of constants.
  10263.  
  10264.           (4) involves a number of built-in functions, especially those
  10265.           involving arithmetic functions.
  10266.  
  10267.       Remedy: Either break the SQL statement into smaller statements or try to
  10268.           remove unnecessary conditions which may exist in the statement.
  10269.  
  10270. 06102 DB2 102 ZeichenkettenkonstantenlΣnge > 254 Zeichen oder 124 graphischen Zeichen
  10271.  
  10272.       Reason: The SQL statement contains a character literal or hexadecimal
  10273.           literal that contains more than 254 characters or numbers, or it
  10274.           contains a Double-Byte Character Set (DBCS) literal that
  10275.           contains more than 127 characters.
  10276.  
  10277.       Remedy: Decrease the length of the literal and rerun.
  10278.  
  10279. 06103 DB2 103 Ungⁿltiger numerischer Ausdruck
  10280.  
  10281.       Reason: A floating-point number did not end with a digit (exponent).
  10282.           For example, 12E is not correct, but 12E0 is correct.
  10283.  
  10284.       Remedy: Correct the command.
  10285.  
  10286. 06104 DB2 104 Aussage enthΣlt ein ungⁿltiges Token oder Merkmal
  10287.  
  10288.       Reason: The statement contains an invalid character or token.  Some of
  10289.           the possible causes are:
  10290.  
  10291.           (1) incorrect character or character string found
  10292.  
  10293.           (2) extra input found following normal completion of an SQL
  10294.           statement
  10295.  
  10296.           (3) name starts with underscore
  10297.  
  10298.           (4) zero length name (inside double quotes)
  10299.  
  10300.           (5) nonnumeric value found in an integer field
  10301.  
  10302.           (6) missing keyword or value
  10303.  
  10304.       Remedy: Check the SQL statement for all errors.  Correct the statement
  10305.           and resubmit it.
  10306.  
  10307. 06105 DB2 105 Ungⁿltige Zeichenkettenkonstanten
  10308.  
  10309.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10310.           Reference Manual, Appendix B for an Explanation of this error.
  10311.  
  10312.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10313.           Reference Manual, Appendix B for the recommended System Action
  10314.           or Programmer Response for this error.
  10315.  
  10316. 06107 DB2 107 Verwendeter Name ist zu lang
  10317.  
  10318.       Reason: The length of a name for a column, table, index, DBSPACE,
  10319.           cursor, host variable, statement, or WHENEVER GO TO label
  10320.           exceeds the maximum of 18.  Only the first 18 characters are
  10321.           displayed.
  10322.  
  10323.       Remedy: Correct the command.
  10324.  
  10325. 06109 DB2 109 Es wurde versucht, eine unerlaubte Bedingung zu verwenden
  10326.  
  10327.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10328.           Reference Manual, Appendix B for an Explanation of this error.
  10329.  
  10330.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10331.           Reference Manual, Appendix B for the recommended System Action
  10332.           or Programmer Response for this error.
  10333.  
  10334. 06110 DB2 110 Ungⁿltiger hexadezimaler Ausdruck
  10335.  
  10336.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10337.           Reference Manual, Appendix B for an Explanation of this error.
  10338.  
  10339.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10340.           Reference Manual, Appendix B for the recommended System Action
  10341.           or Programmer Response for this error.
  10342.  
  10343. 06111 DB2 111 Eine SQL-Funktion beinhaltet keinen Spaltennamen
  10344.  
  10345.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10346.           Reference Manual, Appendix B for an Explanation of this error.
  10347.  
  10348.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10349.           Reference Manual, Appendix B for the recommended System Action
  10350.           or Programmer Response for this error.
  10351.  
  10352. 06112 DB2 112 Funktionsoperand ist eine Funktion oder ein Ausdruck nach DISTINCT
  10353.  
  10354.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10355.           Reference Manual, Appendix B for an Explanation of this error.
  10356.  
  10357.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10358.           Reference Manual, Appendix B for the recommended System Action
  10359.           or Programmer Response for this error.
  10360.  
  10361. 06113 DB2 113 Ungⁿltiges Zeichen wurde in Namen gefunden
  10362.  
  10363.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10364.           Reference Manual, Appendix B for an Explanation of this error.
  10365.  
  10366.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10367.           Reference Manual, Appendix B for the recommended System Action
  10368.           or Programmer Response for this error.
  10369.  
  10370. 06115 DB2 115 Siehe SQLCODE-Fehler-Nr.-115 in IBM DB2-Meldungen und Codes
  10371.  
  10372.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10373.           Reference Manual, Appendix B for an Explanation of this error.
  10374.  
  10375.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10376.           Reference Manual, Appendix B for the recommended System Action
  10377.           or Programmer Response for this error.
  10378.  
  10379. 06117 DB2 117 Anzahl von Einfⁿgewerten stimmt mit der Anzahl der Objektspalten nicht ⁿberein
  10380.  
  10381.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10382.           Reference Manual, Appendix B for an Explanation of this error.
  10383.  
  10384.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10385.           Reference Manual, Appendix B for the recommended System Action
  10386.           or Programmer Response for this error.
  10387.  
  10388. 06118 DB2 118 Objekttabelle/Ansicht von INSERT, DELETE oder UPDATE ist auch in FROM-Bedingung
  10389.  
  10390.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10391.           Reference Manual, Appendix B for an Explanation of this error.
  10392.  
  10393.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10394.           Reference Manual, Appendix B for the recommended System Action
  10395.           or Programmer Response for this error.
  10396.  
  10397. 06119 DB2 119 Eine Spalte in der HAVING-Bedingung ist in der GROUP BY-Bedingung nicht enthalten
  10398.  
  10399.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10400.           Reference Manual, Appendix B for an Explanation of this error.
  10401.  
  10402.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10403.           Reference Manual, Appendix B for the recommended System Action
  10404.           or Programmer Response for this error.
  10405.  
  10406. 06120 DB2 120 WHERE oder SET hat eine Funktion oder verweist auf eine Spalte in GROUP BY einer Ansicht
  10407.  
  10408.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10409.           Reference Manual, Appendix B for an Explanation of this error.
  10410.  
  10411.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10412.           Reference Manual, Appendix B for the recommended System Action
  10413.           or Programmer Response for this error.
  10414.  
  10415. 06121 DB2 121 Spalte wurde mehr als einmal in einer INSERT- oder UPDATE-Aussage spezifiziert
  10416.  
  10417.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10418.           Reference Manual, Appendix B for an Explanation of this error.
  10419.  
  10420.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10421.           Reference Manual, Appendix B for the recommended System Action
  10422.           or Programmer Response for this error.
  10423.  
  10424. 06122 DB2 122 SELECT ohne GROUP BY hat col & function oder col not in GROUP BY
  10425.  
  10426.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10427.           Reference Manual, Appendix B for an Explanation of this error.
  10428.  
  10429.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10430.           Reference Manual, Appendix B for the recommended System Action
  10431.           or Programmer Response for this error.
  10432.  
  10433. 06125 DB2 125 Integer in ORDER BY identifiziert keine Spalte des Ergebnisses
  10434.  
  10435.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10436.           Reference Manual, Appendix B for an Explanation of this error.
  10437.  
  10438.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10439.           Reference Manual, Appendix B for the recommended System Action
  10440.           or Programmer Response for this error.
  10441.  
  10442. 06126 DB2 126 Die Anweisung SELECT enthΣlt sowohl eine UPDATE- als auch eine ORDER BY-Bedingung
  10443.  
  10444.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10445.           Reference Manual, Appendix B for an Explanation of this error.
  10446.  
  10447.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10448.           Reference Manual, Appendix B for the recommended System Action
  10449.           or Programmer Response for this error.
  10450.  
  10451. 06127 DB2 127 DISTINCT wurde mehr als einmal in einer Unterauswahl spezifiziert
  10452.  
  10453.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10454.           Reference Manual, Appendix B for an Explanation of this error.
  10455.  
  10456.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10457.           Reference Manual, Appendix B for the recommended System Action
  10458.           or Programmer Response for this error.
  10459.  
  10460. 06128 DB2 128 Ungⁿltige Verwendung von  NULL in PrΣdikat
  10461.  
  10462.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10463.           Reference Manual, Appendix B for an Explanation of this error.
  10464.  
  10465.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10466.           Reference Manual, Appendix B for the recommended System Action
  10467.           or Programmer Response for this error.
  10468.  
  10469. 06129 DB2 129 Die Aussage enthΣlt zuviele Tabellennamen
  10470.  
  10471.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10472.           Reference Manual, Appendix B for an Explanation of this error.
  10473.  
  10474.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10475.           Reference Manual, Appendix B for the recommended System Action
  10476.           or Programmer Response for this error.
  10477.  
  10478. 06131 DB2 131 Aussage mit LIKE-PrΣdikat enthΣlt inkompatible Datentypen
  10479.  
  10480.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10481.           Reference Manual, Appendix B for an Explanation of this error.
  10482.  
  10483.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10484.           Reference Manual, Appendix B for the recommended System Action
  10485.           or Programmer Response for this error.
  10486.  
  10487. 06132 DB2 132 Ungeeignetes LIKE-PrΣdikat: Operand 1 ist keine Spalte oder Operand 2 ist keine Zeichenkette
  10488.  
  10489.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10490.           Reference Manual, Appendix B for an Explanation of this error.
  10491.  
  10492.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10493.           Reference Manual, Appendix B for the recommended System Action
  10494.           or Programmer Response for this error.
  10495.  
  10496. 06133 DB2 133 Ungeeignete Funktion in HAVING: Arithmetische Operation wurde angewendet auf verbundene
  10497.  
  10498.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10499.           Reference Manual, Appendix B for an Explanation of this error.
  10500.  
  10501.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10502.           Reference Manual, Appendix B for the recommended System Action
  10503.           or Programmer Response for this error.
  10504.  
  10505. 06134 DB2 134 Unkorrekte Verwendung einer Memo-Zeichenkettenspalte oder Hostvariable mit einer maximalen LΣnge von > 254
  10506.  
  10507.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10508.           Reference Manual, Appendix B for an Explanation of this error.
  10509.  
  10510.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10511.           Reference Manual, Appendix B for the recommended System Action
  10512.           or Programmer Response for this error.
  10513.  
  10514. 06136 DB2 136 Sortierbefehl kann nicht ausgefⁿhrt werden, da die SortierschlⁿssellΣnge > 4000 Byte
  10515.  
  10516.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10517.           Reference Manual, Appendix B for an Explanation of this error.
  10518.  
  10519.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10520.           Reference Manual, Appendix B for the recommended System Action
  10521.           or Programmer Response for this error.
  10522.  
  10523. 06150 DB2 150 INSERT, DELETE oder UPDATE einer Ansicht, wo die gewΣhlte Operation keine
  10524.  
  10525.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10526.           Reference Manual, Appendix B for an Explanation of this error.
  10527.  
  10528.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10529.           Reference Manual, Appendix B for the recommended System Action
  10530.           or Programmer Response for this error.
  10531.  
  10532. 06151 DB2 151 Siehe SQLCODE-Fehler-Nr. -151 in IBM DB2-Meldungen und Codes
  10533.  
  10534.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10535.           Reference Manual, Appendix B for an Explanation of this error.
  10536.  
  10537.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10538.           Reference Manual, Appendix B for the recommended System Action
  10539.           or Programmer Response for this error.
  10540.  
  10541. 06153 DB2 153 Die Aussage Ansicht-anlegen enthΣlt nicht die geforderte Spaltenliste
  10542.  
  10543.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10544.           Reference Manual, Appendix B for an Explanation of this error.
  10545.  
  10546.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10547.           Reference Manual, Appendix B for the recommended System Action
  10548.           or Programmer Response for this error.
  10549.  
  10550. 06154 DB2 154 Ansicht anlegen fehlgeschlagen, da die Ansichtendefinition eine Ansicht enthΣlt
  10551.  
  10552.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10553.           Reference Manual, Appendix B for an Explanation of this error.
  10554.  
  10555.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10556.           Reference Manual, Appendix B for the recommended System Action
  10557.           or Programmer Response for this error.
  10558.  
  10559. 06155 DB2 155 Ungeeignete FROM-Bedingung: Eine der Tabellen ist eine Ansicht mit GROUP BY
  10560.  
  10561.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10562.           Reference Manual, Appendix B for an Explanation of this error.
  10563.  
  10564.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10565.           Reference Manual, Appendix B for the recommended System Action
  10566.           or Programmer Response for this error.
  10567.  
  10568. 06156 DB2 156 ALTER TABLE, DROP TABLE, LOCK TABLE oder CREATE INDEX verwenden eine Ansicht
  10569.  
  10570.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10571.           Reference Manual, Appendix B for an Explanation of this error.
  10572.  
  10573.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10574.           Reference Manual, Appendix B for the recommended System Action
  10575.           or Programmer Response for this error.
  10576.  
  10577. 06158 DB2 158 Spaltenanzahl in Ansicht stimmt nicht mit Spaltenanzahl in SELECT ⁿberein
  10578.  
  10579.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10580.           Reference Manual, Appendix B for an Explanation of this error.
  10581.  
  10582.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10583.           Reference Manual, Appendix B for the recommended System Action
  10584.           or Programmer Response for this error.
  10585.  
  10586. 06159 DB2 159 Der in DROP VIEW spezifizierte Name ist ein Tabellenname
  10587.  
  10588.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10589.           Reference Manual, Appendix B for an Explanation of this error.
  10590.  
  10591.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10592.           Reference Manual, Appendix B for the recommended System Action
  10593.           or Programmer Response for this error.
  10594.  
  10595. 06160 DB2 160 WITH CHECK OPTION kann fⁿr die spezifizierte Ansicht nicht verwendet werden
  10596.  
  10597.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10598.           Reference Manual, Appendix B for an Explanation of this error.
  10599.  
  10600.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10601.           Reference Manual, Appendix B for the recommended System Action
  10602.           or Programmer Response for this error.
  10603.  
  10604. 06161 DB2 161 INSERT/UPDATE ist nicht erlaubt, da Ergebniszeile der Ansicht nicht genⁿgt
  10605.  
  10606.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10607.           Reference Manual, Appendix B for an Explanation of this error.
  10608.  
  10609.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10610.           Reference Manual, Appendix B for the recommended System Action
  10611.           or Programmer Response for this error.
  10612.  
  10613. 06164 DB2 164 Dieser Benutzer hat nicht das Recht, eine Ansicht anzulegen
  10614.  
  10615.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10616.           Reference Manual, Appendix B for an Explanation of this error.
  10617.  
  10618.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10619.           Reference Manual, Appendix B for the recommended System Action
  10620.           or Programmer Response for this error.
  10621.  
  10622. 06170 DB2 170 Die Anzahl der fⁿr die Funktion spezifizierten Argumente ist ungⁿltig
  10623.  
  10624.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10625.           Reference Manual, Appendix B for an Explanation of this error.
  10626.  
  10627.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10628.           Reference Manual, Appendix B for the recommended System Action
  10629.           or Programmer Response for this error.
  10630.  
  10631. 06171 DB2 171 Der (die) Datentyp/lΣnge/wert eines Arguments zu einer Funktion ist ungⁿltig
  10632.  
  10633.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10634.           Reference Manual, Appendix B for an Explanation of this error.
  10635.  
  10636.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10637.           Reference Manual, Appendix B for the recommended System Action
  10638.           or Programmer Response for this error.
  10639.  
  10640. 06172 DB2 172 Ein ungⁿltiger Funktionsname wurde spezifiziert
  10641.  
  10642.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10643.           Reference Manual, Appendix B for an Explanation of this error.
  10644.  
  10645.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10646.           Reference Manual, Appendix B for the recommended System Action
  10647.           or Programmer Response for this error.
  10648.  
  10649. 06180 DB2 180 Die Syntax der Zeichenketten-ReprΣsentation eines DatumZeit-Wertes ist ungⁿltig
  10650.  
  10651.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10652.           Reference Manual, Appendix B for an Explanation of this error.
  10653.  
  10654.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10655.           Reference Manual, Appendix B for the recommended System Action
  10656.           or Programmer Response for this error.
  10657.  
  10658. 06181 DB2 181 Die Zeichenketten-ReprΣsentation eines DatumZeit-Wertes ist kein gⁿltiger Wert
  10659.  
  10660.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10661.           Reference Manual, Appendix B for an Explanation of this error.
  10662.  
  10663.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10664.           Reference Manual, Appendix B for the recommended System Action
  10665.           or Programmer Response for this error.
  10666.  
  10667. 06182 DB2 182 Der arithmetische Ausdruck mit einem DatumZeit-Wert ist nicht gⁿltig
  10668.  
  10669.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10670.           Reference Manual, Appendix B for an Explanation of this error.
  10671.  
  10672.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10673.           Reference Manual, Appendix B for the recommended System Action
  10674.           or Programmer Response for this error.
  10675.  
  10676. 06183 DB2 183 Die arithmetische Operation mit einem DatumZeit-Stempel hat ein ungⁿltiges Ergebnis
  10677.  
  10678.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10679.           Reference Manual, Appendix B for an Explanation of this error.
  10680.  
  10681.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10682.           Reference Manual, Appendix B for the recommended System Action
  10683.           or Programmer Response for this error.
  10684.  
  10685. 06184 DB2 184 Der arithmetische Ausdruck mit einem DatumZeit-Wert enthΣlt eine Hostvariable
  10686.  
  10687.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10688.           Reference Manual, Appendix B for an Explanation of this error.
  10689.  
  10690.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10691.           Reference Manual, Appendix B for the recommended System Action
  10692.           or Programmer Response for this error.
  10693.  
  10694. 06185 DB2 185 Siehe SQLCODE-Fehler-Nr. -185 in IBM DB2-Meldungen und Codes
  10695.  
  10696.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10697.           Reference Manual, Appendix B for an Explanation of this error.
  10698.  
  10699.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10700.           Reference Manual, Appendix B for the recommended System Action
  10701.           or Programmer Response for this error.
  10702.  
  10703. 06186 DB2 186 Siehe SQLCODE-Fehler-Nr. -186 in IBM DB2-Meldungen und Codes
  10704.  
  10705.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10706.           Reference Manual, Appendix B for an Explanation of this error.
  10707.  
  10708.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10709.           Reference Manual, Appendix B for the recommended System Action
  10710.           or Programmer Response for this error.
  10711.  
  10712. 06198 DB2 198 Der Operand von PREPARE oder EXECUTE IMMEDIATE ist ein Leerzeichen oder leer
  10713.  
  10714.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10715.           Reference Manual, Appendix B for an Explanation of this error.
  10716.  
  10717.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10718.           Reference Manual, Appendix B for the recommended System Action
  10719.           or Programmer Response for this error.
  10720.  
  10721. 06199 DB2 199 Unerlaubte Verwendung eines Schlⁿsselworts; Token wurde erwartet
  10722.  
  10723.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10724.           Reference Manual, Appendix B for an Explanation of this error.
  10725.  
  10726.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10727.           Reference Manual, Appendix B for the recommended System Action
  10728.           or Programmer Response for this error.
  10729.  
  10730. 06203 DB2 203 Der Spaltenverweis ist doppeldeutig
  10731.  
  10732.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10733.           Reference Manual, Appendix B for an Explanation of this error.
  10734.  
  10735.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10736.           Reference Manual, Appendix B for the recommended System Action
  10737.           or Programmer Response for this error.
  10738.  
  10739. 06204 DB2 204 Dieser Name ist nicht definiert
  10740.  
  10741.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10742.           Reference Manual, Appendix B for an Explanation of this error.
  10743.  
  10744.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10745.           Reference Manual, Appendix B for the recommended System Action
  10746.           or Programmer Response for this error.
  10747.  
  10748. 06205 DB2 205 Diese Spalte geh÷rt nicht zur verwendeten Tabelle
  10749.  
  10750.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10751.           Reference Manual, Appendix B for an Explanation of this error.
  10752.  
  10753.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10754.           Reference Manual, Appendix B for the recommended System Action
  10755.           or Programmer Response for this error.
  10756.  
  10757. 06206 DB2 206 Diese Spalte geh÷rt nicht in die eingefⁿgte Tabelle, nicht in die aktualisierte Tabelle oder in eine andere Tabelle aus FROM
  10758.  
  10759.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10760.           Reference Manual, Appendix B for an Explanation of this error.
  10761.  
  10762.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10763.           Reference Manual, Appendix B for the recommended System Action
  10764.           or Programmer Response for this error.
  10765.  
  10766. 06207 DB2 207 ORDER BY ungeeignet: EnthΣlt Spalten, die ein Ergebnis einer UNION-Anweisung sind
  10767.  
  10768.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10769.           Reference Manual, Appendix B for an Explanation of this error.
  10770.  
  10771.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10772.           Reference Manual, Appendix B for the recommended System Action
  10773.           or Programmer Response for this error.
  10774.  
  10775. 06208 DB2 208 Ungⁿltige ORDER BY: Eine ORDER BY-Spalte ist nicht Teil der Ergebnistabelle
  10776.  
  10777.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10778.           Reference Manual, Appendix B for an Explanation of this error.
  10779.  
  10780.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10781.           Reference Manual, Appendix B for the recommended System Action
  10782.           or Programmer Response for this error.
  10783.  
  10784. 06219 DB2 219 Die ben÷tigte ErklΣrungstabelle existiert nicht
  10785.  
  10786.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10787.           Reference Manual, Appendix B for an Explanation of this error.
  10788.  
  10789.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10790.           Reference Manual, Appendix B for the recommended System Action
  10791.           or Programmer Response for this error.
  10792.  
  10793. 06220 DB2 220 Eine Spalte in der ErklΣrungstabelle wurde nicht richtig definiert
  10794.  
  10795.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10796.           Reference Manual, Appendix B for an Explanation of this error.
  10797.  
  10798.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10799.           Reference Manual, Appendix B for the recommended System Action
  10800.           or Programmer Response for this error.
  10801.  
  10802. 06301 DB2 301 Hostvariable kann aufgrund ihres Datentyps nicht als spezifiziert verwendet werden
  10803.  
  10804.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10805.           Reference Manual, Appendix B for an Explanation of this error.
  10806.  
  10807.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10808.           Reference Manual, Appendix B for the recommended System Action
  10809.           or Programmer Response for this error.
  10810.  
  10811. 06302 DB2 302 Der Wert einer Eingabevariablen ist fⁿr die Zielspalte zu gro▀
  10812.  
  10813.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10814.           Reference Manual, Appendix B for an Explanation of this error.
  10815.  
  10816.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10817.           Reference Manual, Appendix B for the recommended System Action
  10818.           or Programmer Response for this error.
  10819.  
  10820. 06303 DB2 303 Wert wurde der Hostvariablen nicht zugewiesen: Datentypen sind nicht vergleichbar
  10821.  
  10822.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10823.           Reference Manual, Appendix B for an Explanation of this error.
  10824.  
  10825.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10826.           Reference Manual, Appendix B for the recommended System Action
  10827.           or Programmer Response for this error.
  10828.  
  10829. 06304 DB2 304 Wert wurde der Hostvariablen nicht zugewiesen: Wert ist nicht innerhalb des Datentypbereichs
  10830.  
  10831.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10832.           Reference Manual, Appendix B for an Explanation of this error.
  10833.  
  10834.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10835.           Reference Manual, Appendix B for the recommended System Action
  10836.           or Programmer Response for this error.
  10837.  
  10838. 06305 DB2 305 NULL-Wert wurde der Hostvariablen nicht zugewiesen: Keine Indikatorvariable
  10839.  
  10840.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10841.           Reference Manual, Appendix B for an Explanation of this error.
  10842.  
  10843.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10844.           Reference Manual, Appendix B for the recommended System Action
  10845.           or Programmer Response for this error.
  10846.  
  10847. 06309 DB2 309 Ungⁿltiges PrΣdikat: Es wurde auf eine Hostvariable mit der LΣnge NULL verwiesen
  10848.  
  10849.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10850.           Reference Manual, Appendix B for an Explanation of this error.
  10851.  
  10852.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10853.           Reference Manual, Appendix B for the recommended System Action
  10854.           or Programmer Response for this error.
  10855.  
  10856. 06311 DB2 311 Die eingegebene LΣnge einer Hostvariablen ist negativ
  10857.  
  10858.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10859.           Reference Manual, Appendix B for an Explanation of this error.
  10860.  
  10861.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10862.           Reference Manual, Appendix B for the recommended System Action
  10863.           or Programmer Response for this error.
  10864.  
  10865. 06312 DB2 312 Undefinierte oder unbrauchbare Hostvariable
  10866.  
  10867.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10868.           Reference Manual, Appendix B for an Explanation of this error.
  10869.  
  10870.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10871.           Reference Manual, Appendix B for the recommended System Action
  10872.           or Programmer Response for this error.
  10873.  
  10874. 06313 DB2 313 Anzahl der Hostvariabeln stimmen mit der Anzahl der Parametermarkierer nicht ⁿberein
  10875.  
  10876.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10877.           Reference Manual, Appendix B for an Explanation of this error.
  10878.  
  10879.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10880.           Reference Manual, Appendix B for the recommended System Action
  10881.           or Programmer Response for this error.
  10882.  
  10883. 06401 DB2 401 Operanden einer arithmetischen oder einer Vergleichsoperation sind nicht vergleichbar
  10884.  
  10885.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10886.           Reference Manual, Appendix B for an Explanation of this error.
  10887.  
  10888.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10889.           Reference Manual, Appendix B for the recommended System Action
  10890.           or Programmer Response for this error.
  10891.  
  10892. 06402 DB2 402 Eine arithmetische Funktion oder ein Operator wurden auf Daten vom Typ CHAR angewandt
  10893.  
  10894.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10895.           Reference Manual, Appendix B for an Explanation of this error.
  10896.  
  10897.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10898.           Reference Manual, Appendix B for the recommended System Action
  10899.           or Programmer Response for this error.
  10900.  
  10901. 06404 DB2 404 UPDATE oder INSERT bestimmen eine zu lange Zeichenkette
  10902.  
  10903.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10904.           Reference Manual, Appendix B for an Explanation of this error.
  10905.  
  10906.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10907.           Reference Manual, Appendix B for the recommended System Action
  10908.           or Programmer Response for this error.
  10909.  
  10910. 06405 DB2 405 Numerischer Ausdruck kann nicht als spezifizierter Ausdruck benutzt werden, da er au▀erhalb des Bereichs liegt
  10911.  
  10912.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10913.           Reference Manual, Appendix B for an Explanation of this error.
  10914.  
  10915.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10916.           Reference Manual, Appendix B for the recommended System Action
  10917.           or Programmer Response for this error.
  10918.  
  10919. 06406 DB2 406 Ein abgeleiteter numerischer Wert ist au▀erhalb des Bereichs seiner Objektspalte
  10920.  
  10921.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10922.           Reference Manual, Appendix B for an Explanation of this error.
  10923.  
  10924.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10925.           Reference Manual, Appendix B for the recommended System Action
  10926.           or Programmer Response for this error.
  10927.  
  10928. 06407 DB2 407 Der Wert ist NULL, aber die Objektspalte darf keine NULL-Werte enthalten
  10929.  
  10930.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10931.           Reference Manual, Appendix B for an Explanation of this error.
  10932.  
  10933.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10934.           Reference Manual, Appendix B for the recommended System Action
  10935.           or Programmer Response for this error.
  10936.  
  10937. 06408 DB2 408 Der Wert ist mit dem Datentyp der Objektspalte nicht vergleichbar
  10938.  
  10939.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10940.           Reference Manual, Appendix B for an Explanation of this error.
  10941.  
  10942.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10943.           Reference Manual, Appendix B for the recommended System Action
  10944.           or Programmer Response for this error.
  10945.  
  10946. 06409 DB2 409 Ungⁿltiger Operand einer COUNT-Funktion
  10947.  
  10948.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10949.           Reference Manual, Appendix B for an Explanation of this error.
  10950.  
  10951.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10952.           Reference Manual, Appendix B for the recommended System Action
  10953.           or Programmer Response for this error.
  10954.  
  10955. 06410 DB2 410 Der Gleitkommaausdruck enthΣlt mehr als 30 Zeichen
  10956.  
  10957.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10958.           Reference Manual, Appendix B for an Explanation of this error.
  10959.  
  10960.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10961.           Reference Manual, Appendix B for the recommended System Action
  10962.           or Programmer Response for this error.
  10963.  
  10964. 06411 DB2 411 Das Schlⁿssselwort USER kann nicht als spezifiziertes Wort verwendet werden
  10965.  
  10966.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10967.           Reference Manual, Appendix B for an Explanation of this error.
  10968.  
  10969.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10970.           Reference Manual, Appendix B for the recommended System Action
  10971.           or Programmer Response for this error.
  10972.  
  10973. 06412 DB2 412 Die Select-Anweisung einer Unterabfrage spezifiziert mehrere Spalten
  10974.  
  10975.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10976.           Reference Manual, Appendix B for an Explanation of this error.
  10977.  
  10978.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10979.           Reference Manual, Appendix B for the recommended System Action
  10980.           or Programmer Response for this error.
  10981.  
  10982. 06413 DB2 413 ▄berlauf wΣhrend einer Datentypkonversion
  10983.  
  10984.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10985.           Reference Manual, Appendix B for an Explanation of this error.
  10986.  
  10987.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10988.           Reference Manual, Appendix B for the recommended System Action
  10989.           or Programmer Response for this error.
  10990.  
  10991. 06414 DB2 414 Die numerische Spalte wurde in einem LIKE-PrΣdikat spezifiziert
  10992.  
  10993.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  10994.           Reference Manual, Appendix B for an Explanation of this error.
  10995.  
  10996.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  10997.           Reference Manual, Appendix B for the recommended System Action
  10998.           or Programmer Response for this error.
  10999.  
  11000. 06415 DB2 415 Korrespondierende Spalten in UNION haben keine identischen Beschreibungen
  11001.  
  11002.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11003.           Reference Manual, Appendix B for an Explanation of this error.
  11004.  
  11005.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11006.           Reference Manual, Appendix B for the recommended System Action
  11007.           or Programmer Response for this error.
  11008.  
  11009. 06416 DB2 416 Ein UNION-Operand enthΣlt eine Memo-Zeichenkettenspalte
  11010.  
  11011.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11012.           Reference Manual, Appendix B for an Explanation of this error.
  11013.  
  11014.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11015.           Reference Manual, Appendix B for the recommended System Action
  11016.           or Programmer Response for this error.
  11017.  
  11018. 06417 DB2 417 STATEMENT enthΣlt Parametermarkierer als Operanden desselben Operators
  11019.  
  11020.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11021.           Reference Manual, Appendix B for an Explanation of this error.
  11022.  
  11023.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11024.           Reference Manual, Appendix B for the recommended System Action
  11025.           or Programmer Response for this error.
  11026.  
  11027. 06418 DB2 418 Die STATEMENT-Zeichenkette, die vorbereitet werden soll, hat Parametermarkierer in einer SELECT-Anweisung
  11028.  
  11029.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11030.           Reference Manual, Appendix B for an Explanation of this error.
  11031.  
  11032.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11033.           Reference Manual, Appendix B for the recommended System Action
  11034.           or Programmer Response for this error.
  11035.  
  11036. 06419 DB2 419 Das Ergebnis der dezimalen Division hat eine negative Skalierung erzeugt
  11037.  
  11038.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11039.           Reference Manual, Appendix B for an Explanation of this error.
  11040.  
  11041.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11042.           Reference Manual, Appendix B for the recommended System Action
  11043.           or Programmer Response for this error.
  11044.  
  11045. 06421 DB2 421 Die UNION-Operanden haben nicht die gleiche Spaltenanzahl
  11046.  
  11047.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11048.           Reference Manual, Appendix B for an Explanation of this error.
  11049.  
  11050.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11051.           Reference Manual, Appendix B for the recommended System Action
  11052.           or Programmer Response for this error.
  11053.  
  11054. 06501 DB2 501 Der in einer FETCH- oder DISCONNECT-Anweisung identifizierte Cursor ist nicht ge÷ffnet
  11055.  
  11056.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11057.           Reference Manual, Appendix B for an Explanation of this error.
  11058.  
  11059.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11060.           Reference Manual, Appendix B for the recommended System Action
  11061.           or Programmer Response for this error.
  11062.  
  11063. 06502 DB2 502 Der in der CONNECT-Anweisung identifizierte Cursor ist bereits ge÷ffnet
  11064.  
  11065.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11066.           Reference Manual, Appendix B for an Explanation of this error.
  11067.  
  11068.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11069.           Reference Manual, Appendix B for the recommended System Action
  11070.           or Programmer Response for this error.
  11071.  
  11072. 06503 DB2 503 Spalte wurde nicht aktualisiert, da sie nicht in der UPDATE-Bedingung in der SELECT-Anweisung identifiziert wurde 
  11073.  
  11074.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11075.           Reference Manual, Appendix B for an Explanation of this error.
  11076.  
  11077.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11078.           Reference Manual, Appendix B for the recommended System Action
  11079.           or Programmer Response for this error.
  11080.  
  11081. 06504 DB2 504 Der spezifizierte Cusorname ist nicht definiert
  11082.  
  11083.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11084.           Reference Manual, Appendix B for an Explanation of this error.
  11085.  
  11086.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11087.           Reference Manual, Appendix B for the recommended System Action
  11088.           or Programmer Response for this error.
  11089.  
  11090. 06507 DB2 507 Der in UPDATE oder DELETE identifizierte Cursor ist nicht ge÷ffnet
  11091.  
  11092.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11093.           Reference Manual, Appendix B for an Explanation of this error.
  11094.  
  11095.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11096.           Reference Manual, Appendix B for the recommended System Action
  11097.           or Programmer Response for this error.
  11098.  
  11099. 06508 DB2 508 Der in UPDATE oder DELETE identifizierte Cursor ist nicht auf einer Zeile positioniert
  11100.  
  11101.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11102.           Reference Manual, Appendix B for an Explanation of this error.
  11103.  
  11104.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11105.           Reference Manual, Appendix B for the recommended System Action
  11106.           or Programmer Response for this error.
  11107.  
  11108. 06509 DB2 509 Tabelle in UPDATE oder DELETE stimmt nicht mit der vom Cursor ausgewΣhlten Zieltabelle ⁿberein
  11109.  
  11110.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11111.           Reference Manual, Appendix B for an Explanation of this error.
  11112.  
  11113.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11114.           Reference Manual, Appendix B for the recommended System Action
  11115.           or Programmer Response for this error.
  11116.  
  11117. 06510 DB2 510 Die vom Cursor fⁿr UPDATE oder DELETE ausgewΣhlte Zieltabelle kann nicht verΣndert werden
  11118.  
  11119.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11120.           Reference Manual, Appendix B for an Explanation of this error.
  11121.  
  11122.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11123.           Reference Manual, Appendix B for the recommended System Action
  11124.           or Programmer Response for this error.
  11125.  
  11126. 06511 DB2 511 FOR UPDATE ist nicht erlaubt: Die vom Cursor ausgewΣhlte Zieltabelle darf nicht verΣndert werden
  11127.  
  11128.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11129.           Reference Manual, Appendix B for an Explanation of this error.
  11130.  
  11131.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11132.           Reference Manual, Appendix B for the recommended System Action
  11133.           or Programmer Response for this error.
  11134.  
  11135. 06514 DB2 514 Der Cursor ist nicht definiert
  11136.  
  11137.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11138.           Reference Manual, Appendix B for an Explanation of this error.
  11139.  
  11140.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11141.           Reference Manual, Appendix B for the recommended System Action
  11142.           or Programmer Response for this error.
  11143.  
  11144. 06516 DB2 516 The DESCRIBE-Aussage identifiziert keine vorbereitete Aussage
  11145.  
  11146.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11147.           Reference Manual, Appendix B for an Explanation of this error.
  11148.  
  11149.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11150.           Reference Manual, Appendix B for the recommended System Action
  11151.           or Programmer Response for this error.
  11152.  
  11153. 06517 DB2 517 Cursor nicht verwendet; er identifiziert keine vorbereitete SELECT-Anweisung
  11154.  
  11155.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11156.           Reference Manual, Appendix B for an Explanation of this error.
  11157.  
  11158.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11159.           Reference Manual, Appendix B for the recommended System Action
  11160.           or Programmer Response for this error.
  11161.  
  11162. 06518 DB2 518 EXECUTE-Aussage identifiziert keine gⁿltig vorbereitete Aussage
  11163.  
  11164.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11165.           Reference Manual, Appendix B for an Explanation of this error.
  11166.  
  11167.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11168.           Reference Manual, Appendix B for the recommended System Action
  11169.           or Programmer Response for this error.
  11170.  
  11171. 06519 DB2 519 PREPARE-Aussage identifiziert die SELECT-Anweisung des ge÷ffneten Cursors
  11172.  
  11173.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11174.           Reference Manual, Appendix B for an Explanation of this error.
  11175.  
  11176.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11177.           Reference Manual, Appendix B for the recommended System Action
  11178.           or Programmer Response for this error.
  11179.  
  11180. 06551 DB2 551 Der Benutzer hat nicht das Recht, die Operation an diesem Objekt durchzufⁿhren
  11181.  
  11182.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11183.           Reference Manual, Appendix B for an Explanation of this error.
  11184.  
  11185.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11186.           Reference Manual, Appendix B for the recommended System Action
  11187.           or Programmer Response for this error.
  11188.  
  11189. 06552 DB2 552 Der Benutzer hat nicht das Recht, die spezifizierte Operation durchzufⁿhren
  11190.  
  11191.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11192.           Reference Manual, Appendix B for an Explanation of this error.
  11193.  
  11194.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11195.           Reference Manual, Appendix B for the recommended System Action
  11196.           or Programmer Response for this error.
  11197.  
  11198. 06554 DB2 554 Eine Rechte-Kennung kann sich nicht selbst Rechte zuteilen
  11199.  
  11200.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11201.           Reference Manual, Appendix B for an Explanation of this error.
  11202.  
  11203.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11204.           Reference Manual, Appendix B for the recommended System Action
  11205.           or Programmer Response for this error.
  11206.  
  11207. 06555 DB2 555 Eine Rechte-Kennung kann sich nicht selbst Rechte entziehen
  11208.  
  11209.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11210.           Reference Manual, Appendix B for an Explanation of this error.
  11211.  
  11212.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11213.           Reference Manual, Appendix B for the recommended System Action
  11214.           or Programmer Response for this error.
  11215.  
  11216. 06556 DB2 556 Das Recht kann nicht widerrufen werden, da der Benutzer es nicht besitzt
  11217.  
  11218.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11219.           Reference Manual, Appendix B for an Explanation of this error.
  11220.  
  11221.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11222.           Reference Manual, Appendix B for the recommended System Action
  11223.           or Programmer Response for this error.
  11224.  
  11225. 06557 DB2 557 Inkonsistentes GRANT/REVOKE-Schlⁿsselwort
  11226.  
  11227.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11228.           Reference Manual, Appendix B for an Explanation of this error.
  11229.  
  11230.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11231.           Reference Manual, Appendix B for the recommended System Action
  11232.           or Programmer Response for this error.
  11233.  
  11234. 06558 DB2 558 Option WITH GRANT wird ignoriert, da GRANT auf PUBLIC gesetzt wurde
  11235.  
  11236.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11237.           Reference Manual, Appendix B for an Explanation of this error.
  11238.  
  11239.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11240.           Reference Manual, Appendix B for the recommended System Action
  11241.           or Programmer Response for this error.
  11242.  
  11243. 06559 DB2 559 Alle Rechtefunktionen wurden deaktiviert
  11244.  
  11245.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11246.           Reference Manual, Appendix B for an Explanation of this error.
  11247.  
  11248.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11249.           Reference Manual, Appendix B for the recommended System Action
  11250.           or Programmer Response for this error.
  11251.  
  11252. 06560 DB2 560 Option WITH GRANT wird fⁿr UPDATE ignoriert
  11253.  
  11254.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11255.           Reference Manual, Appendix B for an Explanation of this error.
  11256.  
  11257.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11258.           Reference Manual, Appendix B for the recommended System Action
  11259.           or Programmer Response for this error.
  11260.  
  11261. 06601 DB2 601 Name des Objekts, das angelegt werden soll, ist identisch mit einem bestehenden Namen
  11262.  
  11263.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11264.           Reference Manual, Appendix B for an Explanation of this error.
  11265.  
  11266.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11267.           Reference Manual, Appendix B for the recommended System Action
  11268.           or Programmer Response for this error.
  11269.  
  11270. 06602 DB2 602 Zu viele Spalten in einem Create-Index spezifiziert
  11271.  
  11272.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11273.           Reference Manual, Appendix B for an Explanation of this error.
  11274.  
  11275.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11276.           Reference Manual, Appendix B for the recommended System Action
  11277.           or Programmer Response for this error.
  11278.  
  11279. 06603 DB2 603 Eindeutig-Index kann nicht angelegt werden, da nicht eindeutige Daten fⁿr die spezifizierte Spalte existieren
  11280.  
  11281.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11282.           Reference Manual, Appendix B for an Explanation of this error.
  11283.  
  11284.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11285.           Reference Manual, Appendix B for the recommended System Action
  11286.           or Programmer Response for this error.
  11287.  
  11288. 06604 DB2 604 Spaltendefinition spezifiziert ungⁿltige LΣnge, Genauigkeit oder Bereich
  11289.  
  11290.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11291.           Reference Manual, Appendix B for an Explanation of this error.
  11292.  
  11293.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11294.           Reference Manual, Appendix B for the recommended System Action
  11295.           or Programmer Response for this error.
  11296.  
  11297. 06607 DB2 607 Operation ist fⁿr Systemtabellen nicht festgelegt
  11298.  
  11299.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11300.           Reference Manual, Appendix B for an Explanation of this error.
  11301.  
  11302.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11303.           Reference Manual, Appendix B for the recommended System Action
  11304.           or Programmer Response for this error.
  11305.  
  11306. 06612 DB2 612 Spaltenname ist doppelt
  11307.  
  11308.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11309.           Reference Manual, Appendix B for an Explanation of this error.
  11310.  
  11311.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11312.           Reference Manual, Appendix B for the recommended System Action
  11313.           or Programmer Response for this error.
  11314.  
  11315. 06614 DB2 614 Index kann nicht angelegt werden: Die Summe der internen SchlⁿssellΣngen ⁿberschreitet das zulΣssige Maximum
  11316.  
  11317.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11318.           Reference Manual, Appendix B for an Explanation of this error.
  11319.  
  11320.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11321.           Reference Manual, Appendix B for the recommended System Action
  11322.           or Programmer Response for this error.
  11323.  
  11324. 06616 DB2 616 Spezifiziertes Objekt kann nicht gel÷scht werden, da noch ein Verweis darauf existiert
  11325.  
  11326.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11327.           Reference Manual, Appendix B for an Explanation of this error.
  11328.  
  11329.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11330.           Reference Manual, Appendix B for the recommended System Action
  11331.           or Programmer Response for this error.
  11332.  
  11333. 06618 DB2 618 Operation ist auf Basis der Systemdaten nicht erlaubt
  11334.  
  11335.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11336.           Reference Manual, Appendix B for an Explanation of this error.
  11337.  
  11338.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11339.           Reference Manual, Appendix B for the recommended System Action
  11340.           or Programmer Response for this error.
  11341.  
  11342. 06619 DB2 619 Operation nicht mehr erlaubt, da Arbeitsdatei-Datenbasis nicht gestoppt ist
  11343.  
  11344.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11345.           Reference Manual, Appendix B for an Explanation of this error.
  11346.  
  11347.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11348.           Reference Manual, Appendix B for the recommended System Action
  11349.           or Programmer Response for this error.
  11350.  
  11351. 06620 DB2 620 Schlⁿsselwort in STATEMENT ist fⁿr Tabellenbereich in Daten der Arbeitsdatei nicht erlaubt
  11352.  
  11353.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11354.           Reference Manual, Appendix B for an Explanation of this error.
  11355.  
  11356.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11357.           Reference Manual, Appendix B for the recommended System Action
  11358.           or Programmer Response for this error.
  11359.  
  11360. 06623 DB2 623 Ein Clusterindex besteht bereits fⁿr die spezifizierte Tabelle
  11361.  
  11362.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11363.           Reference Manual, Appendix B for an Explanation of this error.
  11364.  
  11365.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11366.           Reference Manual, Appendix B for the recommended System Action
  11367.           or Programmer Response for this error.
  11368.  
  11369. 06636 DB2 636 Die Partitionierungsschlⁿssel wurden nicht in auf- oder absteigender Folge spezifiziert
  11370.  
  11371.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11372.           Reference Manual, Appendix B for an Explanation of this error.
  11373.  
  11374.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11375.           Reference Manual, Appendix B for the recommended System Action
  11376.           or Programmer Response for this error.
  11377.  
  11378. 06637 DB2 637 Schlⁿsselw÷rter sind doppelt
  11379.  
  11380.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11381.           Reference Manual, Appendix B for an Explanation of this error.
  11382.  
  11383.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11384.           Reference Manual, Appendix B for the recommended System Action
  11385.           or Programmer Response for this error.
  11386.  
  11387. 06644 DB2 644 Ungⁿltiger Wert wurde fⁿr Schlⁿsselwort in spezifizierter Aussage spezifiziert
  11388.  
  11389.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11390.           Reference Manual, Appendix B for an Explanation of this error.
  11391.  
  11392.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11393.           Reference Manual, Appendix B for the recommended System Action
  11394.           or Programmer Response for this error.
  11395.  
  11396. 06646 DB2 646 Tabelle wurde nicht angelegt: Der Partitions/Standard-Tabellenbereich enthΣlt bereits Tabelle
  11397.  
  11398.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11399.           Reference Manual, Appendix B for an Explanation of this error.
  11400.  
  11401.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11402.           Reference Manual, Appendix B for the recommended System Action
  11403.           or Programmer Response for this error.
  11404.  
  11405. 06647 DB2 647 Pufferpool kann nicht spezifiziert werden, da er nicht aktiviert wurde
  11406.  
  11407.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11408.           Reference Manual, Appendix B for an Explanation of this error.
  11409.  
  11410.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11411.           Reference Manual, Appendix B for the recommended System Action
  11412.           or Programmer Response for this error.
  11413.  
  11414. 06652 DB2 652 Versto▀ gegen eine bei der Installation vordefinierte Bearbeitungs- oder Bewertungsprozedur
  11415.  
  11416.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11417.           Reference Manual, Appendix B for an Explanation of this error.
  11418.  
  11419.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11420.           Reference Manual, Appendix B for the recommended System Action
  11421.           or Programmer Response for this error.
  11422.  
  11423. 06653 DB2 653 Tabelle in partitioniertem Tabellenbereich ist nicht verfⁿgbar: Es existiert kein partitionierter Index
  11424.  
  11425.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11426.           Reference Manual, Appendix B for an Explanation of this error.
  11427.  
  11428.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11429.           Reference Manual, Appendix B for the recommended System Action
  11430.           or Programmer Response for this error.
  11431.  
  11432. 06660 DB2 660 Index wurde nicht in einem partitionierten Tabellenbereich angelegt: Schlⁿsselgrenze wurde nicht spezifiziert
  11433.  
  11434.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11435.           Reference Manual, Appendix B for an Explanation of this error.
  11436.  
  11437.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11438.           Reference Manual, Appendix B for the recommended System Action
  11439.           or Programmer Response for this error.
  11440.  
  11441. 06661 DB2 661 Index wurde nicht in einem partitionierten Tabellenbereich angelegt: Die Teile sind nicht gleich der Partition
  11442.  
  11443.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11444.           Reference Manual, Appendix B for an Explanation of this error.
  11445.  
  11446.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11447.           Reference Manual, Appendix B for the recommended System Action
  11448.           or Programmer Response for this error.
  11449.  
  11450. 06662 DB2 662 Ein partitionierter Index kann nicht in einem nichtpartitionierten Tabellenbereich angelegt werden
  11451.  
  11452.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11453.           Reference Manual, Appendix B for an Explanation of this error.
  11454.  
  11455.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11456.           Reference Manual, Appendix B for the recommended System Action
  11457.           or Programmer Response for this error.
  11458.  
  11459. 06663 DB2 663 Die Anzahl von Grenzschlⁿsselwerten ist null oder > Spalten im Indexschlⁿssel
  11460.  
  11461.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11462.           Reference Manual, Appendix B for an Explanation of this error.
  11463.  
  11464.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11465.           Reference Manual, Appendix B for the recommended System Action
  11466.           or Programmer Response for this error.
  11467.  
  11468. 06664 DB2 664 Interne Grenzschlⁿsselfelder fⁿr partitionierten Index sind zu gro▀
  11469.  
  11470.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11471.           Reference Manual, Appendix B for an Explanation of this error.
  11472.  
  11473.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11474.           Reference Manual, Appendix B for the recommended System Action
  11475.           or Programmer Response for this error.
  11476.  
  11477. 06665 DB2 665 Die PART-Bedingung fⁿr eine ALTER-Aussage ist aufgehoben oder ungⁿltig
  11478.  
  11479.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11480.           Reference Manual, Appendix B for an Explanation of this error.
  11481.  
  11482.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11483.           Reference Manual, Appendix B for the recommended System Action
  11484.           or Programmer Response for this error.
  11485.  
  11486. 06666 DB2 666 Aussage kann nicht ausgefⁿhrt werden, da ein Werkzeug gerade verwendet wird
  11487.  
  11488.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11489.           Reference Manual, Appendix B for an Explanation of this error.
  11490.  
  11491.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11492.           Reference Manual, Appendix B for the recommended System Action
  11493.           or Programmer Response for this error.
  11494.  
  11495. 06667 DB2 667 Clusterindex fⁿr den Partitionstabellenbereich kann nicht explizit gel÷scht werden
  11496.  
  11497.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11498.           Reference Manual, Appendix B for an Explanation of this error.
  11499.  
  11500.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11501.           Reference Manual, Appendix B for the recommended System Action
  11502.           or Programmer Response for this error.
  11503.  
  11504. 06668 DB2 668 Spalte kann der Tabelle nicht hinzugefⁿgt werden, da die Tabelle in Bearbeitung ist
  11505.  
  11506.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11507.           Reference Manual, Appendix B for an Explanation of this error.
  11508.  
  11509.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11510.           Reference Manual, Appendix B for the recommended System Action
  11511.           or Programmer Response for this error.
  11512.  
  11513. 06669 DB2 669 Eine Tabelle im partitionierten Tabellenbereich kann nicht explizit gel÷scht werden
  11514.  
  11515.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11516.           Reference Manual, Appendix B for an Explanation of this error.
  11517.  
  11518.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11519.           Reference Manual, Appendix B for the recommended System Action
  11520.           or Programmer Response for this error.
  11521.  
  11522. 06670 DB2 670 Die AufzeichnungslΣnge der Tabelle ⁿberschreitet die zulΣssige Seitengr÷▀e
  11523.  
  11524.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11525.           Reference Manual, Appendix B for an Explanation of this error.
  11526.  
  11527.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11528.           Reference Manual, Appendix B for the recommended System Action
  11529.           or Programmer Response for this error.
  11530.  
  11531. 06671 DB2 671 Pufferpool-Attribut kann nicht verΣndert werden: Es verΣndert die Seitengr÷▀e der Tabelle SPA
  11532.  
  11533.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11534.           Reference Manual, Appendix B for an Explanation of this error.
  11535.  
  11536.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11537.           Reference Manual, Appendix B for the recommended System Action
  11538.           or Programmer Response for this error.
  11539.  
  11540. 06676 DB2 676 Ein Seiten-Pufferpool mit 32 KByte kann fⁿr einen Index nicht verwendet werden
  11541.  
  11542.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11543.           Reference Manual, Appendix B for an Explanation of this error.
  11544.  
  11545.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11546.           Reference Manual, Appendix B for the recommended System Action
  11547.           or Programmer Response for this error.
  11548.  
  11549. 06677 DB2 677 Nicht genⁿgend virtueller Speicher fⁿr Pufferpool vorhanden
  11550.  
  11551.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11552.           Reference Manual, Appendix B for an Explanation of this error.
  11553.  
  11554.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11555.           Reference Manual, Appendix B for the recommended System Action
  11556.           or Programmer Response for this error.
  11557.  
  11558. 06678 DB2 678 Der Ausdruck fⁿr den Indexbegrenzungsschlⁿssel mu▀ mit dem Datentyp der Spalte ⁿbereinstimmen
  11559.  
  11560.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11561.           Reference Manual, Appendix B for an Explanation of this error.
  11562.  
  11563.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11564.           Reference Manual, Appendix B for the recommended System Action
  11565.           or Programmer Response for this error.
  11566.  
  11567. 06679 DB2 679 Das spezifizierte Objekt kann nicht angelegt werden, da die Operation DROP in diesem Objekt ansteht
  11568.  
  11569.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11570.           Reference Manual, Appendix B for an Explanation of this error.
  11571.  
  11572.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11573.           Reference Manual, Appendix B for the recommended System Action
  11574.           or Programmer Response for this error.
  11575.  
  11576. 06680 DB2 680 ZUviele Spalten fⁿr eine Tabelle spezifiziert
  11577.  
  11578.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11579.           Reference Manual, Appendix B for an Explanation of this error.
  11580.  
  11581.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11582.           Reference Manual, Appendix B for the recommended System Action
  11583.           or Programmer Response for this error.
  11584.  
  11585. 06681 DB2 681 Eine Spalte verst÷▀ gegen bei der Installation vordefinierte Feldprozeduren
  11586.  
  11587.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11588.           Reference Manual, Appendix B for an Explanation of this error.
  11589.  
  11590.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11591.           Reference Manual, Appendix B for the recommended System Action
  11592.           or Programmer Response for this error.
  11593.  
  11594. 06682 DB2 682 Feldprozedur konnte nicht geladen werden
  11595.  
  11596.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11597.           Reference Manual, Appendix B for an Explanation of this error.
  11598.  
  11599.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11600.           Reference Manual, Appendix B for the recommended System Action
  11601.           or Programmer Response for this error.
  11602.  
  11603. 06683 DB2 683 Spaltentyp ungⁿltig fⁿr FIELDPROC-Option
  11604.  
  11605.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11606.           Reference Manual, Appendix B for an Explanation of this error.
  11607.  
  11608.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11609.           Reference Manual, Appendix B for the recommended System Action
  11610.           or Programmer Response for this error.
  11611.  
  11612. 06684 DB2 684 LΣnge der Buchstabenliste ist zu lang
  11613.  
  11614.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11615.           Reference Manual, Appendix B for an Explanation of this error.
  11616.  
  11617.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11618.           Reference Manual, Appendix B for the recommended System Action
  11619.           or Programmer Response for this error.
  11620.  
  11621. 06685 DB2 685 Ungⁿltiger Feldtyp
  11622.  
  11623.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11624.           Reference Manual, Appendix B for an Explanation of this error.
  11625.  
  11626.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11627.           Reference Manual, Appendix B for the recommended System Action
  11628.           or Programmer Response for this error.
  11629.  
  11630. 06686 DB2 686 Spalte mit w/fld proc kann nicht w/Spalten vergleichen w/unterschiedliche fld proc
  11631.  
  11632.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11633.           Reference Manual, Appendix B for an Explanation of this error.
  11634.  
  11635.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11636.           Reference Manual, Appendix B for the recommended System Action
  11637.           or Programmer Response for this error.
  11638.  
  11639. 06687 DB2 687 Feldtypen sind nicht vergleichbar
  11640.  
  11641.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11642.           Reference Manual, Appendix B for an Explanation of this error.
  11643.  
  11644.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11645.           Reference Manual, Appendix B for the recommended System Action
  11646.           or Programmer Response for this error.
  11647.  
  11648. 06688 DB2 688 Unkorrekte Daten von Feldprozedur erhalten
  11649.  
  11650.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11651.           Reference Manual, Appendix B for an Explanation of this error.
  11652.  
  11653.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11654.           Reference Manual, Appendix B for the recommended System Action
  11655.           or Programmer Response for this error.
  11656.  
  11657. 06802 DB2 802 Arithmetischer ▄berlauf oder Division durch Null ist aufgetreten
  11658.  
  11659.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11660.           Reference Manual, Appendix B for an Explanation of this error.
  11661.  
  11662.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11663.           Reference Manual, Appendix B for the recommended System Action
  11664.           or Programmer Response for this error.
  11665.  
  11666. 06803 DB2 803 Eindeutig Einfⁿgen/Aktualisieren wurde auf Spalten mit doppelten Daten angewandt
  11667.  
  11668.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11669.           Reference Manual, Appendix B for an Explanation of this error.
  11670.  
  11671.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11672.           Reference Manual, Appendix B for the recommended System Action
  11673.           or Programmer Response for this error.
  11674.  
  11675. 06804 DB2 804 Fehler in Anwendungsprogramm-Eingabeparameter fⁿr SQL-Aussage
  11676.  
  11677.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11678.           Reference Manual, Appendix B for an Explanation of this error.
  11679.  
  11680.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11681.           Reference Manual, Appendix B for the recommended System Action
  11682.           or Programmer Response for this error.
  11683.  
  11684. 06805 DB2 805 Spezifizierter Programmname wurde in spezifiziertem Plan nicht gefunden
  11685.  
  11686.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11687.           Reference Manual, Appendix B for an Explanation of this error.
  11688.  
  11689.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11690.           Reference Manual, Appendix B for the recommended System Action
  11691.           or Programmer Response for this error.
  11692.  
  11693. 06811 DB2 811 Siehe SQLCODE-Fehler-Nr.-811 in IBM DB2-Meldungen und Codes
  11694.  
  11695.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11696.           Reference Manual, Appendix B for an Explanation of this error.
  11697.  
  11698.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11699.           Reference Manual, Appendix B for the recommended System Action
  11700.           or Programmer Response for this error.
  11701.  
  11702. 06815 DB2 815 Siehe SQLCODE-Fehler-Nr.-815 in IBM DB2-Meldungen und Codes
  11703.  
  11704.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11705.           Reference Manual, Appendix B for an Explanation of this error.
  11706.  
  11707.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11708.           Reference Manual, Appendix B for the recommended System Action
  11709.           or Programmer Response for this error.
  11710.  
  11711. 06817 DB2 817 Siehe SQLCODE-Fehler-Nr.-817 in IBM DB2-Meldungen und Codes
  11712.  
  11713.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11714.           Reference Manual, Appendix B for an Explanation of this error.
  11715.  
  11716.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11717.           Reference Manual, Appendix B for the recommended System Action
  11718.           or Programmer Response for this error.
  11719.  
  11720. 06818 DB2 818 Siehe SQLCODE-Fehler-Nr.-818 in IBM DB2-Meldungen und Codes
  11721.  
  11722.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11723.           Reference Manual, Appendix B for an Explanation of this error.
  11724.  
  11725.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11726.           Reference Manual, Appendix B for the recommended System Action
  11727.           or Programmer Response for this error.
  11728.  
  11729. 06819 DB2 819 Ansicht kann nicht wiederhergestellt werden, da sie auf nicht anlegbare Ansicht verweist
  11730.  
  11731.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11732.           Reference Manual, Appendix B for an Explanation of this error.
  11733.  
  11734.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11735.           Reference Manual, Appendix B for the recommended System Action
  11736.           or Programmer Response for this error.
  11737.  
  11738. 06820 DB2 820 Siehe SQLCODE-Fehler-Nr.-820 in IBM DB2-Meldungen und Codes
  11739.  
  11740.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11741.           Reference Manual, Appendix B for an Explanation of this error.
  11742.  
  11743.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11744.           Reference Manual, Appendix B for the recommended System Action
  11745.           or Programmer Response for this error.
  11746.  
  11747. 06822 DB2 822 SQLDA enthΣlt ungⁿltige Datenadresse oder Indikator-Variablenadresse
  11748.  
  11749.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11750.           Reference Manual, Appendix B for an Explanation of this error.
  11751.  
  11752.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11753.           Reference Manual, Appendix B for the recommended System Action
  11754.           or Programmer Response for this error.
  11755.  
  11756. 06840 DB2 840 Zuviele Elemente in  SELECT- oder INSERT-Liste erhalten
  11757.  
  11758.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11759.           Reference Manual, Appendix B for an Explanation of this error.
  11760.  
  11761.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11762.           Reference Manual, Appendix B for the recommended System Action
  11763.           or Programmer Response for this error.
  11764.  
  11765. 06901 DB2 901 Siehe SQLCODE-Fehler-Nr.-901 in IBM DB2-Meldungen und Codes
  11766.  
  11767.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11768.           Reference Manual, Appendix B for an Explanation of this error.
  11769.  
  11770.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11771.           Reference Manual, Appendix B for the recommended System Action
  11772.           or Programmer Response for this error.
  11773.  
  11774. 06902 DB2 902 Siehe: SQLCODE-Fehler-Nr.-902 in IBM DB2-Meldungen und Codes
  11775.  
  11776.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11777.           Reference Manual, Appendix B for an Explanation of this error.
  11778.  
  11779.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11780.           Reference Manual, Appendix B for the recommended System Action
  11781.           or Programmer Response for this error.
  11782.  
  11783. 06904 DB2 904 Ausfⁿhrung nicht m÷glich, da Quelle nicht verfⁿgbar
  11784.  
  11785.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11786.           Reference Manual, Appendix B for an Explanation of this error.
  11787.  
  11788.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11789.           Reference Manual, Appendix B for the recommended System Action
  11790.           or Programmer Response for this error.
  11791.  
  11792. 06906 DB2 906 SQL-Anweisung wurde nicht ausgefⁿhrt. Funktion wurde aufgrund eines frⁿheren Fehlers deaktiviert
  11793.  
  11794.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11795.           Reference Manual, Appendix B for an Explanation of this error.
  11796.  
  11797.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11798.           Reference Manual, Appendix B for the recommended System Action
  11799.           or Programmer Response for this error.
  11800.  
  11801. 06909 DB2 909 Objekt wurde gel÷scht
  11802.  
  11803.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11804.           Reference Manual, Appendix B for an Explanation of this error.
  11805.  
  11806.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11807.           Reference Manual, Appendix B for the recommended System Action
  11808.           or Programmer Response for this error.
  11809.  
  11810. 06910 DB2 910 SQL-Anweisung kann nicht auf Objekt zugreifen, bei dem ein Drop-VerΣnderungsproze▀ ansteht
  11811.  
  11812.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11813.           Reference Manual, Appendix B for an Explanation of this error.
  11814.  
  11815.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11816.           Reference Manual, Appendix B for the recommended System Action
  11817.           or Programmer Response for this error.
  11818.  
  11819. 06911 DB2 911 Aktuelle Arbeitseinheit wurde wegen Zeitⁿberschreitung oder Verriegelung (deadlock) zurⁿckgerollt
  11820.  
  11821.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11822.           Reference Manual, Appendix B for an Explanation of this error.
  11823.  
  11824.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11825.           Reference Manual, Appendix B for the recommended System Action
  11826.           or Programmer Response for this error.
  11827.  
  11828. 06913 DB2 913 Ausfⁿhrung wegen Verriegelung (deadlock) oder Zeitⁿberschreitung fehlgeschlagen
  11829.  
  11830.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11831.           Reference Manual, Appendix B for an Explanation of this error.
  11832.  
  11833.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11834.           Reference Manual, Appendix B for the recommended System Action
  11835.           or Programmer Response for this error.
  11836.  
  11837. 06922 DB2 922 Verbindungs-Berechtigungsfehler
  11838.  
  11839.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11840.           Reference Manual, Appendix B for an Explanation of this error.
  11841.  
  11842.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11843.           Reference Manual, Appendix B for the recommended System Action
  11844.           or Programmer Response for this error.
  11845.  
  11846. 06923 DB2 923 Verbindung wurde nicht eingerichtet
  11847.  
  11848.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11849.           Reference Manual, Appendix B for an Explanation of this error.
  11850.  
  11851.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11852.           Reference Manual, Appendix B for the recommended System Action
  11853.           or Programmer Response for this error.
  11854.  
  11855. 06924 DB2 924 Interner Fehler bei DB2-Verbindung
  11856.  
  11857.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11858.           Reference Manual, Appendix B for an Explanation of this error.
  11859.  
  11860.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11861.           Reference Manual, Appendix B for the recommended System Action
  11862.           or Programmer Response for this error.
  11863.  
  11864. 06925 DB2 925 COMMIT nicht gⁿltig in IMS/VS oder CICS/OS/VS-Umgebung
  11865.  
  11866.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11867.           Reference Manual, Appendix B for an Explanation of this error.
  11868.  
  11869.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11870.           Reference Manual, Appendix B for the recommended System Action
  11871.           or Programmer Response for this error.
  11872.  
  11873. 06926 DB2 926 ROLLBACK nicht gⁿltig in IMS/VS oder CIC/OS/VS-Umgebung
  11874.  
  11875.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11876.           Reference Manual, Appendix B for an Explanation of this error.
  11877.  
  11878.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11879.           Reference Manual, Appendix B for the recommended System Action
  11880.           or Programmer Response for this error.
  11881.  
  11882. 06927 DB2 927 Sprach-Schnittstelle aufgerufen: Verbindungsumgebung wurde nicht eingerichtet
  11883.  
  11884.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11885.           Reference Manual, Appendix B for an Explanation of this error.
  11886.  
  11887.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11888.           Reference Manual, Appendix B for the recommended System Action
  11889.           or Programmer Response for this error.
  11890.  
  11891. 06992 DB2 992 Neuverbindung zu DB2 nicht m÷glich; Versuch bitte spΣter wiederholen
  11892.  
  11893.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11894.           Reference Manual, Appendix B for an Explanation of this error.
  11895.  
  11896.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11897.           Reference Manual, Appendix B for the recommended System Action
  11898.           or Programmer Response for this error.
  11899.  
  11900. 06993 DB2 993 Autoⁿbertragen einstellen ist mit mehreren Cursor nicht gⁿltig
  11901.  
  11902.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11903.           Reference Manual, Appendix B for an Explanation of this error.
  11904.  
  11905.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11906.           Reference Manual, Appendix B for the recommended System Action
  11907.           or Programmer Response for this error.
  11908.  
  11909. 06994 DB2 994 Verbinden mit mehreren Cursor ist mit Autoⁿbertragen nicht gⁿltig
  11910.  
  11911.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11912.           Reference Manual, Appendix B for an Explanation of this error.
  11913.  
  11914.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11915.           Reference Manual, Appendix B for the recommended System Action
  11916.           or Programmer Response for this error.
  11917.  
  11918. 06995 DB2 995 Zeile zum Einlesen zu lang
  11919.  
  11920.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11921.           Reference Manual, Appendix B for an Explanation of this error.
  11922.  
  11923.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11924.           Reference Manual, Appendix B for the recommended System Action
  11925.           or Programmer Response for this error.
  11926.  
  11927. 06996 DB2 996 Memo-Suchen hinter Ende von Memodaten
  11928.  
  11929.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11930.           Reference Manual, Appendix B for an Explanation of this error.
  11931.  
  11932.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11933.           Reference Manual, Appendix B for the recommended System Action
  11934.           or Programmer Response for this error.
  11935.  
  11936. 06997 DB2 997 "WHERE CURRENT OF" Cursorname wurde nicht gefunden
  11937.  
  11938.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11939.           Reference Manual, Appendix B for an Explanation of this error.
  11940.  
  11941.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11942.           Reference Manual, Appendix B for the recommended System Action
  11943.           or Programmer Response for this error.
  11944.  
  11945. 06998 DB2 998 Ungⁿltige Memofeldzahl
  11946.  
  11947.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11948.           Reference Manual, Appendix B for an Explanation of this error.
  11949.  
  11950.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11951.           Reference Manual, Appendix B for the recommended System Action
  11952.           or Programmer Response for this error.
  11953.  
  11954. 06999 DB2 999 Current-of-Cursorprozesse k÷nnen nicht verwendet werden. Einlesen in Gang
  11955.  
  11956.       Reason: This is a DB2 database error message.  Refer to the IBM DB2
  11957.           Reference Manual, Appendix B for an Explanation of this error.
  11958.  
  11959.       Remedy: This is a DB2 database error message.  Refer to the IBM DB2
  11960.           Reference Manual, Appendix B for the recommended System Action
  11961.           or Programmer Response for this error.
  11962.  
  11963.  
  11964. The errors documented in this section of the Error Guide are the result of
  11965. NETBios network errors or APPC/PC error message.  SQLBase is NOT generating
  11966. these errors.  These errors occur on the NETBios Network and SQLBase received
  11967. this error.  After SQLBase receives the NETBIOS Network error, SQLBase passes
  11968. this NETBios network error thru the SQLBase Application Interface back to the
  11969. application program.    When SQLBase receives a NETBios network error, SQLBase
  11970. converts the NETBios network hexidecimal error code to a decimal number and
  11971. adds 7000 to produce the following network errors.  Because the NETBIos error
  11972. messages vary from vendor to vendor, only the most popular or frequently
  11973. occurring NETBios network error messages are listed here.  If you receive
  11974. SQLBase a 7000 series network error that is not listed here, subtract 7000
  11975. from the SQLBase error number and convert the result from decimal to
  11976. hexidecimal and lookup the resulting hexidecimal number in your vendor's
  11977. NETBios network reference manual.
  11978.  
  11979. 07001 NET     Unerlaubte PufferlΣnge
  11980.  
  11981.       Reason: A SEND BROADCAST or SEND DATAGRAM cannot sent more than 512
  11982.           bytes.  For ADAPTER and SESSION STATUS, the buffer length
  11983.           specified was less than the minimum required.
  11984.  
  11985.       Remedy: This buffer length is controlled by SQLBase and this problem
  11986.           should not occur.  Report this problem to your local Gupta
  11987.           Technologies certified technical support center.
  11988.  
  11989. 07003 NET     Ungⁿltiger Befehl
  11990.  
  11991.       Reason: The command code used was incorrect.
  11992.  
  11993.       Remedy: Reissue the correct command code.
  11994.  
  11995. 07005 NET TMO Zeitgrenze fⁿr Befehl wurde ⁿberschritten
  11996.  
  11997.       Reason: This error has the following meanings: (1) For a CALL or
  11998.           for (2) ADAPTER STATUS, the system time-out period has elapsed.
  11999.           (3) For a SEND or for (4) RECEIVE, the time-out period specified
  12000.           for the CALL or LISTEN has elapsed. (5) For a HANG UP, the
  12001.           time-out period has expired for an outstanding SEND to complete.
  12002.  
  12003.       Remedy: (1) For a CALL, try again later. (2) For an ADAPTER STATUS, make
  12004.           sure you are using a correct name. (3) For a SEND, the session
  12005.           has been terminated abnormally.  Establish another session and
  12006.           reissue a SEND. (4) For a RECEIVE, reissue the command. (5) For
  12007.           a HANG UP the session has been terminated abnormally.
  12008.  
  12009. 07006 NET     Meldung ist unvollstΣndig
  12010.  
  12011.       Reason: You received part of a message because your specified buffer
  12012.           length is not big enough to receive the full message.
  12013.  
  12014.       Remedy: You must reissue another RECEIVE or RECEIVE ANY command to get
  12015.           the rest of the message before the remote computer times-out.
  12016.           For ADAPTER STATUS, SESSION STATUS, RECEIVE DATAGRAM, and
  12017.           RECEIVE BROADCAST DATAGRAM, the remaining data is lost.
  12018.  
  12019. 07008 NET ISN Unerlaubte Anzahl lokaler Sitzungen
  12020.  
  12021.       Reason: The session number (normally from the workstation) specified is
  12022.           not one of the active sessions.
  12023.  
  12024.       Remedy: Specify an active session number when you issue a command.
  12025.  
  12026. 07009 NET     Keine Ressourcen mehr verfⁿgbar
  12027.  
  12028.       Reason: Not enough space available in the adapter for the session.
  12029.  
  12030.       Remedy: Reboot the computer.  This error has probably occurred because
  12031.           there are not enough sessions and commands specified for
  12032.           NETBios.
  12033.  
  12034. 07010 NET CLO Sitzung wurde geschlossen
  12035.  
  12036.       Reason: The session has been closed from either the local or remote
  12037.           computer.
  12038.  
  12039.       Remedy: None required.  Informational only.  This is notification for a
  12040.           pending SEND or RECEIVE command that the session has been
  12041.           closed.  For a HANG UP, the session was closed by the remote
  12042.           computer.
  12043.  
  12044. 07011 NET     Befehl wurde abgebrochen
  12045.  
  12046.       Reason: Notification received that the command was canceled.  If the
  12047.           command that was canceled was a SEND or a CHAIN SEND, the
  12048.           session is abnormally terminated.
  12049.  
  12050.       Remedy: No action is required.
  12051.  
  12052. 07013 NET DPL Name existiert bereits in lokaler Namenstabelle
  12053.  
  12054.       Reason: Attempting to specify a name that is already in the local name
  12055.           table.
  12056.  
  12057.       Remedy: Specify another name.
  12058.  
  12059. 07014 NET     Namenstabelle ist voll
  12060.  
  12061.       Reason: Up to 16 names have already been added.
  12062.  
  12063.       Remedy: Wait until a delete name is issued so an entry will become
  12064.           available.
  12065.  
  12066. 07015 NET     Befehl wurde ausgefⁿhrt, Name verweist noch auf aktive Sitzungen, wurde aber aus dem Register entfernt
  12067.  
  12068.       Reason: The name to be deleted is active in a session now, but is
  12069.           de-registered.  When the name is marked de-registered and has
  12070.           active sessions, it still occupies a slot in the table.  Name is
  12071.           unusable.
  12072.  
  12073.       Remedy: Close all sessions using this name for the DELETE command to
  12074.           complete.
  12075.  
  12076. 07017 NET STF Lokale Sitzungstabelle ist voll
  12077.  
  12078.       Reason: There are no available entries in the session table.  The number
  12079.           of sessions is user-specified.
  12080.  
  12081.       Remedy: The number of commands must be greater than the number of
  12082.           sessions.  Use NETRESET /SHOW to verify the number.  SQLBase
  12083.           needs one NETBios session for each database it is listening on,
  12084.           and one for each client workstation.  It also needs a free
  12085.           session available when a user switches from one cursor to
  12086.           another.
  12087.  
  12088. 07018 NET SOR ╓ffnen der Sitzung verweigert
  12089.  
  12090.       Reason: No LISTEN command is outstanding on the remote computer.    This
  12091.           problem may stem from using the Novell NETBios and Microsoft
  12092.           Windows.    You may be able to connect to SQLBase from Microsoft
  12093.           Windows in standard mode but not when in enhanced mode.
  12094.  
  12095.       Remedy: Wait until a LISTEN is issued on the remote computer.  Many
  12096.           variables may be involved including the network card (type and
  12097.           brand), IRQ, client workstation computer speed, database server
  12098.           computer speed and which verions of network drivers.  If you
  12099.           slow down the database server computer, you can verify that this
  12100.           is the problem.  Changing network cards and/or IRQ's might be to
  12101.           solve the problem.  The best solution for Novell customers is to
  12102.           get Novell's NETBios 3.01 rev F or later and the latest versions
  12103.           of IPX and NET3 (at least rev d).  Moving to MS Windows 3.0A or
  12104.           later may also help.
  12105.  
  12106. 07019 NET     Unerlaubte Namenzahl
  12107.  
  12108.       Reason: Invalid name number.
  12109.  
  12110.       Remedy: You must use the original name number that was assigned to the
  12111.           name.
  12112.  
  12113. 07020 NET CFN Aufgerufener Name wurde nicht gefunden/Keine Antwort
  12114.  
  12115.       Reason: The call name specified cannot be found or did not answer.  This
  12116.           problem may stem from using the Novell NETBios and Microsoft
  12117.           Windows.    You may be able to connect to SQLBase from Microsoft
  12118.           Windows in standard mode but not when in enhanced mode.
  12119.  
  12120.       Remedy: Verify that the call name used is correct.  Retry with the
  12121.           correct or a different call name or reissue if the remote
  12122.           computer is busy.  Many variables may be involved including the
  12123.           network card (type and brand), IRQ, client workstation computer
  12124.           speed, database server computer speed and which verions of
  12125.           network drivers.    If you slow down the database server computer,
  12126.           you can verify that this is the problem.    Changing network cards
  12127.           and/or IRQ's might be to solve the problem.  The best solution
  12128.           for Novell customers is to get Novell's NETBios 3.01 rev F or
  12129.           later and the latest versions of IPX and NET3 (at least rev d).
  12130.           Moving to MS Windows 3.0A or later may also help.
  12131.  
  12132. 07021 NET     Name wurde nicht gefunden; * kann nicht spezifiziert werden, oder 00H wurde eingegeben
  12133.  
  12134.       Reason: The specified name was either not in the table or an asterisk in
  12135.           column 1 of the name field or 00H.
  12136.  
  12137.       Remedy: An asterisk or 00H in column 1 is not allowed.  Retry with
  12138.           another name and verify that it is the correct name.
  12139.  
  12140. 07022 NET     Name wird in Externadapter verwendet
  12141.  
  12142.       Reason: Unique names can only be used once on the network.
  12143.  
  12144.       Remedy: Specify another name.
  12145.  
  12146. 07023 NET     Name wurde gel÷scht
  12147.  
  12148.       Reason: This occurs when a name is deleted and there are no outstanding
  12149.           LISTEN, RECEIVE ANY, RECEIVE DATAGRAM, or RECEIVE BROADCAST
  12150.           DATAGRAM commands for that name.
  12151.  
  12152.       Remedy: Not action required.
  12153.  
  12154. 07024 NET SEA Sitzung wurde unnormal beendet
  12155.  
  12156.       Reason: Either the remote computer is powered off, the cable link is
  12157.           broken, the session SEND or CHAIN SEND has timed-out, or the
  12158.           SEND or CHAIN SEND was canceled, or a HANG UP timed-out waiting
  12159.           for a SEND to complete.
  12160.  
  12161.       Remedy: Check the remote end for status and check the cable.  For a SEND
  12162.           or CHAIN SEND, or RECEIVE or RECEIVE ANY, reestablish the
  12163.           session.
  12164.  
  12165. 07025 NET     Namenskonflikt wurde entdeckt
  12166.  
  12167.       Reason: Network protocol has detected two or more identical names on the
  12168.           network.
  12169.  
  12170.       Remedy: Everyone on the network should delete that name immediately.
  12171.  
  12172. 07026 NET     Inkompatibles ExterngerΣt
  12173.  
  12174.       Reason: Unexpected protocol packet received.
  12175.  
  12176.       Remedy: Verify that all units on the network agree with the network
  12177.           protocols.
  12178.  
  12179. 07033 NET     Schnittstelle ist belegt
  12180.  
  12181.       Reason: Attempting to call the BIOS out of an interrupt handler routine
  12182.           in process.
  12183.  
  12184.       Remedy: Return from the interrupt handler and try again later.
  12185.  
  12186. 07034 NET     Zuviele ausstehende Befehle
  12187.  
  12188.       Reason: The maximum number of commands are outstanding.
  12189.  
  12190.       Remedy: If not at maximum number, refer to RESET.  If at maximum number,
  12191.           retry at a later time.
  12192.  
  12193. 07035 NET     Ungⁿltige Adapterzahl
  12194.  
  12195.       Reason: Attempting to specify a number other than 00H or 01H.
  12196.  
  12197.       Remedy: Specify either 00H for the first adapter of 01H if you have and
  12198.           want to use the second adapter.  Correct the number and try
  12199.           again.
  12200.  
  12201. 07036 NET CDC Befehl wurde wΣhrend des Abbrechens ausgefⁿhrt
  12202.  
  12203.       Reason: Attempting to cancel a command that already completed, or never
  12204.           existed.
  12205.  
  12206.       Remedy: No action required.
  12207.  
  12208. 07037 NET     Reservierter Name wurde spezifiziert
  12209.  
  12210.       Reason: This error is currently undocumented.
  12211.  
  12212.       Remedy: Contact your local Gupta Technologies certified technical
  12213.           support center for assistance.
  12214.  
  12215. 07038 NET     Befehl ist zum Abbrechen nicht gⁿltig
  12216.  
  12217.       Reason: Attempting to cancel a command that is invalid to cancel.
  12218.  
  12219.       Remedy: See CANCEL command for the list of commands not valid to cancel.
  12220.  
  12221. 07255 NET NPR in Arbeit
  12222.  
  12223.       Reason: This error is currently undocumented.
  12224.  
  12225.       Remedy: Contact your local Gupta Technologies certified technical
  12226.           support center for assistance.
  12227.  
  12228. 07257 NET NNF Netzwerk ist au▀er Betrieb
  12229.  
  12230.       Reason: A network adapter has not been found.
  12231.  
  12232.       Remedy: Verify that the network adapter is available in this computer.
  12233.           Check that the network adapter is properly installed.  Is this
  12234.           computer connected to a network?    Try increasing the number of
  12235.           NETBios sessions and commands.
  12236.  
  12237. 07258 NET INP Ungⁿltiger Netzwerkzeiger
  12238.  
  12239.       Reason: This error is currently undocumented.
  12240.  
  12241.       Remedy: Contact your local Gupta Technologies certified technical
  12242.           support center for assistance.
  12243.  
  12244. 07500 NET 500 DBGATEWY Lokale Sitzungstabelle voll. Systemprogrammierer mu▀ benachrichtigt werden
  12245.  
  12246.       Reason: There are not enough NETBios sessions to keep all of the
  12247.           database name listens outstanding.
  12248.  
  12249.       Remedy: Verify that enough sessions and commands have configured on the
  12250.           gateway machine.
  12251.  
  12252. 07501 NET 501 APPC/PC Zuordnungsfehler; Wiederholung nicht m÷glich
  12253.  
  12254.       Reason: This error is currently undocumented.
  12255.  
  12256.       Remedy: Contact your local Gupta Technologies certified technical
  12257.           support center for assistance.
  12258.  
  12259. 07502 NET 502 APPC/PC Zuordnungsfehler; Versuch bitte spΣter wiederholen
  12260.  
  12261.       Reason: This error is currently undocumented.
  12262.  
  12263.       Remedy: Contact your local Gupta Technologies certified technical
  12264.           support center for assistance.
  12265.  
  12266. 07503 NET 503 APPC/PC Zuordnungsfehler; fehlerhafte Benutzerkennung oder Pa▀wort
  12267.  
  12268.       Reason: This error is currently undocumented.
  12269.  
  12270.       Remedy: Contact your local Gupta Technologies certified technical
  12271.           support center for assistance.
  12272.  
  12273. 07505 NET 505 APPC/PC Fehler bei PU-Kontaktaufnahme
  12274.  
  12275.       Reason: This error is currently undocumented.
  12276.  
  12277.       Remedy: Contact your local Gupta Technologies certified technical
  12278.           support center for assistance.
  12279.  
  12280. 07506 NET 506 APPC/PC Fehler bei LU-Kontaktaufnahme
  12281.  
  12282.       Reason: This error is currently undocumented.
  12283.  
  12284.       Remedy: Contact your local Gupta Technologies certified technical
  12285.           support center for assistance.
  12286.  
  12287. 07507 NET 507 APPC/PC Fehler beim Empfangen von Daten
  12288.  
  12289.       Reason: This error is currently undocumented.
  12290.  
  12291.       Remedy: Contact your local Gupta Technologies certified technical
  12292.           support center for assistance.
  12293.  
  12294. 07508 NET 508 APPC/PC Fehler beim Senden von Daten
  12295.  
  12296.       Reason: This error is currently undocumented.
  12297.  
  12298.       Remedy: Contact your local Gupta Technologies certified technical
  12299.           support center for assistance.
  12300.  
  12301. 07509 NET 509 APPC/PC Fehler bei DLC-Kontaktaufnahme
  12302.  
  12303.       Reason: This error is currently undocumented.
  12304.  
  12305.       Remedy: Contact your local Gupta Technologies certified technical
  12306.           support center for assistance.
  12307.  
  12308. 07510 NET 510 APPC/PC Fehler beim Beenden des Transaktionsprogramms
  12309.  
  12310.       Reason: This error is currently undocumented.
  12311.  
  12312.       Remedy: Contact your local Gupta Technologies certified technical
  12313.           support center for assistance.
  12314.  
  12315. 07511 NET 511 APPC/PC Fehler beim Starten des Transaktionsprogramms
  12316.  
  12317.       Reason: This error is currently undocumented.
  12318.  
  12319.       Remedy: Contact your local Gupta Technologies certified technical
  12320.           support center for assistance.
  12321.  
  12322. 07512 NET 512 APPC/PC Fehler beim Wechsel der Sitzungsanzahl
  12323.  
  12324.       Reason: This error is currently undocumented.
  12325.  
  12326.       Remedy: Contact your local Gupta Technologies certified technical
  12327.           support center for assistance.
  12328.  
  12329. 07513 NET 513 APPC/PC Fehler bei LU-Trennung
  12330.  
  12331.       Reason: This error is currently undocumented.
  12332.  
  12333.       Remedy: Contact your local Gupta Technologies certified technical
  12334.           support center for assistance.
  12335.  
  12336. 07514 NET 514 APPC/PC Fehler bei PU-Trennung
  12337.  
  12338.       Reason: This error is currently undocumented.
  12339.  
  12340.       Remedy: Contact your local Gupta Technologies certified technical
  12341.           support center for assistance.
  12342.  
  12343. 07515 NET 515 APPC/PC Fehler beim Beenden der Zuordnung
  12344.  
  12345.       Reason: This error is currently undocumented.
  12346.  
  12347.       Remedy: Contact your local Gupta Technologies certified technical
  12348.           support center for assistance.
  12349.  
  12350. 07516 NET 516 APPC/PC Unbekannter Fehler; Schalten Sie bitte das Verbose-Protokoll ein
  12351.  
  12352.       Reason: This error is currently undocumented.
  12353.  
  12354.       Remedy: Contact your local Gupta Technologies certified technical
  12355.           support center for assistance.
  12356.  
  12357. 07517 NET 517 APPC/PC Kein Host wurde angewΣhlt
  12358.  
  12359.       Reason: This error is currently undocumented.
  12360.  
  12361.       Remedy: Contact your local Gupta Technologies certified technical
  12362.           support center for assistance.
  12363.  
  12364. 07518 NET 518 APPC/PC Keine weiteren Host-Sitzungen verfⁿgbar
  12365.  
  12366.       Reason: This error is currently undocumented.
  12367.  
  12368.       Remedy: Contact your local Gupta Technologies certified technical
  12369.           support center for assistance.
  12370.  
  12371. 07519 NET 519 APPC/PC Irreparabler Fehler wurde beim Host gefunden
  12372.  
  12373.       Reason: This error is currently undocumented.
  12374.  
  12375.       Remedy: Contact your local Gupta Technologies certified technical
  12376.           support center for assistance.
  12377.  
  12378. 07600 NET CAA Adapterstatusstruktur kann nicht zugewiesen werden
  12379.  
  12380.       Reason: This error is currently undocumented.
  12381.  
  12382.       Remedy: Contact your local Gupta Technologies certified technical
  12383.           support center for assistance.
  12384.  
  12385. 07601 NET CAN Netzwerk-Kontrollblock kann nicht zugewiesen werden
  12386.  
  12387.       Reason: This error is currently undocumented.
  12388.  
  12389.       Remedy: Contact your local Gupta Technologies certified technical
  12390.           support center for assistance.
  12391.  
  12392. 07602 NET NBS Netzwerkpuffer ist zu klein
  12393.  
  12394.       Reason: This error is currently undocumented.
  12395.  
  12396.       Remedy: Contact your local Gupta Technologies certified technical
  12397.           support center for assistance.
  12398.  
  12399. 07603 NET CRM Real-Speicher kann nicht zugewiesen werden
  12400.  
  12401.       Reason: Not enough real memory to hold network adapter information.
  12402.  
  12403.       Remedy: Check available real memory at the failing computer.  Attempt to
  12404.           make more real memory available.
  12405.  
  12406.  
  12407. The errors documented in this section of the Error Guide are for general
  12408. SQLBase file input/output errors.
  12409.  
  12410. 08001 FIO CCF Datei kann nicht ⁿbertragen werden
  12411.  
  12412.       Reason: The database system is attempting to flush a file and update
  12413.           its directory but a file error has been determined.
  12414.  
  12415.       Remedy: Contact your local Gupta Technologies certified technical
  12416.           support center.
  12417.  
  12418. 08002 FIO CAD NICHT VERWENDET
  12419.  
  12420.       Reason: This is error code is currently not used by the SQLBase system.
  12421.  
  12422.       Remedy: None.  This error code should never occur.  If you get this
  12423.           error, contact your local Gupta Technologies certified
  12424.           technical support center.
  12425.  
  12426. 08003 FIO FME NUR INTERN VERWENDET: Maximale Anzahl von DateimapeintrΣgen wurde ⁿberschritten
  12427.  
  12428.       Reason: This is error is only used internally by the SQLBase system.
  12429.  
  12430.       Remedy: None.  This error code should never occur.  If you get this
  12431.           error, contact your local Gupta Technologies certified
  12432.           technical support center.
  12433.  
  12434. 08004 FIO OOM Kein weiterer Speicherplatz mehr auf dem Datenbank-Computer
  12435.  
  12436.       Reason: Not enough memory at the database engine to perform the
  12437.           requested task.
  12438.  
  12439.       Remedy: Check available memory at the database computer.    Attempt to
  12440.           make more memory available.  To make more memory available for
  12441.           the database engine, you can reduce size of the CACHE.
  12442.  
  12443. 08005 FIO CGD NICHT VERWENDET
  12444.  
  12445.       Reason: This is error code is currently not used by the SQLBase system.
  12446.  
  12447.       Remedy: None.  This error code should never occur.  If you get this
  12448.           error, contact your local Gupta Technologies certified
  12449.           technical support center.
  12450.  
  12451. 08006 FIO CFN Datei wurde nicht gefunden
  12452.  
  12453.       Reason: Using DIRECTIO the database server cannot find a database file.
  12454.  
  12455.       Remedy: Determine why the database file cannot be found.
  12456.  
  12457. 08007 FIO IFN Ungⁿltiger Dateiname
  12458.  
  12459.       Reason: Using DIRECTIO the database server has determined that the
  12460.           database file name is invalid.
  12461.  
  12462.       Remedy: Correct database file.
  12463.  
  12464. 08008 FIO CFD Verzeichnis wurde nicht gefunden
  12465.  
  12466.       Reason: Using DIRECTIO the database server cannot find the database
  12467.           subdirectory.
  12468.  
  12469.       Remedy: Determine why the database subdirectory cannot be found.
  12470.  
  12471. 08009 FIO COF Datei kann nicht ge÷ffnet werden
  12472.  
  12473.       Reason: Using DIRECTIO the database server cannot open the database
  12474.           file.
  12475.  
  12476.       Remedy: Determine why the database file cannot be opened.
  12477.  
  12478. 08010 FIO ICN Ungⁿltige Clusterzahl
  12479.  
  12480.       Reason: Using DIRECTIO the database server determined an invalid
  12481.           cluster number.
  12482.  
  12483.       Remedy: Determine why a bad cluster was read.  For more detailed
  12484.           information, see the DOS technical reference about clusters and
  12485.           cluster numbers.
  12486.  
  12487. 08011 FIO NMS nicht im Mapbereich
  12488.  
  12489.       Reason: Using DIRECTIO the database server is attempting to lookup the
  12490.           logical sector requested in the file map to determine the
  12491.           physical sector equivalent and run length in number of sectors
  12492.           and the logical sector requested has not been found in the map
  12493.           space.  Each map entry contains the relative and physical sector
  12494.           number.
  12495.  
  12496.       Remedy: Determine why the logical sector is not in the map space.  For
  12497.           more detailed information, see the DOS technical reference about
  12498.           logical sectors and map space.
  12499.  
  12500. 08012 FIO CRD Diskpuffer kann nicht abgefragt werden
  12501.  
  12502.       Reason: Using DIRECTIO the database server is attempting to retrieve the
  12503.           next FAT (File Allocation Table) entry from the FAT table and it
  12504.           cannot find the disk buffer.  DIRECTIO works with 12-bit and
  12505.           16-big FATs.  Depending on whether a 12-bit or 16-bit FAT is in
  12506.           the sector, it extracts the FAT entry.
  12507.  
  12508.       Remedy: Determine why the disk buffer cannot be retrieved.  For more
  12509.           detailed information on FAT tables, see the DOS technical
  12510.           reference on how to access the FAT.  Also, if you are
  12511.           redirecting your files to a network drive, don't load the
  12512.           redirectors and try again without using the network drive.
  12513.  
  12514. 08013 FIO CGI Informationen k÷nnen nicht eingelesen werden
  12515.  
  12516.       Reason: Using DIRECTIO the database server is trying to get directory
  12517.           information on an open file and the system cannot obtain the
  12518.           necessary information.  The database is attempting to determine
  12519.           the file size, attributes, and starting cluster number.
  12520.  
  12521.       Remedy: Determine why the required information could not be obtained.
  12522.           For more detailed information, see the DOS technical reference
  12523.           on how to obtain this information.  This error has frequently
  12524.           occurred when upgrading from one operating system to another.
  12525.           If you have upgraded your operating system lately, DIRECTIO may
  12526.           not be compatible with this version of your new operating
  12527.           system.
  12528.  
  12529. 08014 FIO ITG IntegritΣtsfehler
  12530.  
  12531.       Reason: Using DIRECTIO the database server is attempting to read or
  12532.           write and has determined an unexpected error.
  12533.  
  12534.       Remedy: Contact your local Gupta Technologies certified technical
  12535.           support center.
  12536.  
  12537. 08015 FIO DME Fehler beim Diskmapping
  12538.  
  12539.       Reason: This error is currently undocumented.
  12540.  
  12541.       Remedy: Contact your local Gupta Technologies certified technical
  12542.           support center for assistance.
  12543.  
  12544. 08016 FIO CID NICHT VERWENDET
  12545.  
  12546.       Reason: This is error code is currently not used by the SQLBase system.
  12547.  
  12548.       Remedy: None.  This error code should never occur.  If you get this
  12549.           error, contact your local Gupta Technologies certified
  12550.           technical support center.
  12551.  
  12552. 08017 FIO DIW Verwenden von DIRECTIO nicht m÷glich
  12553.  
  12554.       Reason: The database system has determined DIRECTIO cannot be used on
  12555.           the database server computer.  More generally, this means that
  12556.           SQLBase has examined the specified disk drive, and SQLBase
  12557.           cannot determine what the file structure looks like.  This could
  12558.           potentially happen by having a non-standard disk extender
  12559.           installed such as SPEEDSTORE.  Also, sometimes the file
  12560.           structure may be corrupted and can be fixed by running CHKDSK.
  12561.  
  12562.       Remedy: Determine why the database server computer cannot use DIRECTIO.
  12563.           Set the configuration DIRECTIO off, that is, DIRECTIO=0.
  12564.  
  12565. 08018 FIO CTF Anlegen der DIRECTIO-Testdatei nicht m÷glich
  12566.  
  12567.       Reason: The database system is testing DIRECTIO can be used on the
  12568.           database server computer and a test file cannot be created.
  12569.  
  12570.       Remedy: Determine and correct the cause of the create failure.  Run a
  12571.           check disk utility (CHKDSK) for the current operating system to
  12572.           verify the status of disk.  Verify that sufficient disk space is
  12573.           available and verify that the number of files allowed open for
  12574.           the operating system permits the additional file, that is, check
  12575.           the FILES= configuration parameter setting.
  12576.  
  12577. 08019 FIO WTF Schreiben der DIRECTIO-Testdatei nicht m÷glich
  12578.  
  12579.       Reason: The database system is testing DIRECTIO can be used on the
  12580.           database server computer and a test file cannot be written.
  12581.  
  12582.       Remedy: Determine and correct the cause of the disk write failure.  Most
  12583.           commonly, it may be because you have run out of available disk
  12584.           space.  If sufficient disk space is available, then run a check
  12585.           disk utility (CHKDSK) for the current operating system to verify
  12586.           the status of the disk.
  12587.  
  12588. 08020 FIO RTF NICHT VERWENDET
  12589.  
  12590.       Reason: This is error code is currently not used by the SQLBase system.
  12591.  
  12592.       Remedy: None.  This error code should never occur.  If you get this
  12593.           error, contact your local Gupta Technologies certified
  12594.           technical support center.
  12595.  
  12596. 08021 FIO LTF Schlie▀en der DIRECTIO-Testdatei nicht m÷glich
  12597.  
  12598.       Reason: The database system is testing DIRECTIO can be used on the
  12599.           database server computer and a test file cannot be closed.
  12600.  
  12601.       Remedy: Determine and correct the cause of the CLOSE file error.    Run a
  12602.           check disk utility (CHKDSK) for the database server computer
  12603.           operating system to verify the status of the disk.
  12604.  
  12605. 08022 FIO STF Suchen in DIRECTIO-Testdatei nicht m÷glich
  12606.  
  12607.       Reason: The database system is testing DIRECTIO can be used on the
  12608.           database server computer and a seek within a test file has
  12609.           failed.
  12610.  
  12611.       Remedy: Determine and correct the cause of the seek file error.  Run a
  12612.           check disk utility (CHKDSK) for the database server computer
  12613.           operating system to verify the status of the disk.
  12614.  
  12615.  
  12616. The errors documented in this section of the Error Guide are the result of
  12617. General Communication Interface errors.  SQLBase is NOT generating all these
  12618. errors.  These errors occur on the NETBios Network and SQLBase received this
  12619. error.  After SQLBase receives the NETBIOS Network error, SQLBase passes this
  12620. NETBios network error thru the SQLBase Application Interface back to the
  12621. application program.    When SQLBase receives a NETBios network error, SQLBase
  12622. converts the NETBios network hexidecimal error code to a decimal number and
  12623. adds 9000 to produce the following network errors.  Because the NETBIos error
  12624. messages vary from vendor to vendor, only the most popular or frequently
  12625. occurring NETBios network error messages are listed here.  If you receive
  12626. SQLBase a 9000 series network error that is not listed here, subtract 9000
  12627. from the SQLBase error number and convert the result from decimal to
  12628. hexidecimal and lookup the resulting hexidecimal number in your vendor's
  12629. NETBios network reference manual.
  12630.  
  12631.  
  12632. 09001 GCI IBL Unerlaubte PufferlΣnge
  12633.  
  12634.       Reason: A SEND BROADCAST or SEND DATAGRAM cannot send more than 512
  12635.           bytes.  For ADAPTER and SESSION STATUS, the buffer length
  12636.           specified was less than the minimum required.
  12637.  
  12638.       Remedy: Specify the correct size for the buffer and try again.
  12639.  
  12640. 09003 GCI IVC Ungⁿltiger Befehl
  12641.  
  12642.       Reason: The command code used was incorrect.
  12643.  
  12644.       Remedy: Reissue the correct command code.
  12645.  
  12646. 09005 GCI TMO Zeitgrenze wurde durch Befehl ⁿberschritten
  12647.  
  12648.       Reason: This error has the following meanings: (1) For a CALL or
  12649.           for (2) ADAPTER STATUS, the system time-out period has elapsed.
  12650.           (3) For a SEND or for (4) RECEIVE, the time-out period specified
  12651.           for the CALL or LISTEN has elapsed. (5) For a HANG UP, the
  12652.           time-out period has expired for an outstanding SEND to complete.
  12653.  
  12654.       Remedy: (1) For a CALL, try again later. (2) For an ADAPTER STATUS, make
  12655.           sure you are using a correct name. (3) For a SEND, the session
  12656.           has been terminated abnormally.  Establish another session and
  12657.           reissue a SEND. (4) For a RECEIVE, reissue the command. (5) For
  12658.           a HANG UP the session has been terminated abnormally.
  12659.  
  12660. 09006 GCI MIN Meldung ist unvollstΣndig
  12661.  
  12662.       Reason: You received part of a message because your specified buffer
  12663.           length is not big enough to receive the full message.
  12664.  
  12665.       Remedy: You must reissue another RECEIVE or RECEIVE ANY command to get
  12666.           the rest of the message before the remote computer times-out.
  12667.           For ADAPTER STATUS, SESSION STATUS, RECEIVE DATAGRAM, and
  12668.           RECEIVE BROADCAST DATAGRAM, the remaining data is lost.
  12669.  
  12670. 09008 GCI ISN Unerlaubte Zahl lokaler Sitzungen
  12671.  
  12672.       Reason: The session number (normally from the workstation) specified is
  12673.           not one of the active sessions.
  12674.  
  12675.       Remedy: Specify an active session number when you issue a command.
  12676.  
  12677. 09009 GCI NRA Es sind keine Ressourcen verfⁿgbar
  12678.  
  12679.       Reason: This error is currently undocumented.
  12680.  
  12681.       Remedy: If you are using a 3Com LAN Manager, there is a file called
  12682.           \3OPEN\OS2WRKSTA\LANMAN\LANMAN.INI (fully qualified) that has a
  12683.           section in it like: [workstation]
  12684.                      maxcmds=nn
  12685.                      maxthreads=nn
  12686.           Make maxcmds=64 and maxthreads=32 and it may solve your problem.
  12687.           Another file that possibly is important is the file:
  12688.           \3OPEN\OS2WRKSTA\LANMAN\DRIVERS\ADAPTER\LDR.CFG (fully
  12689.           qualified) that has a line like: "program=
  12690.           c:\3open\os2wrksta\lanman\drivers\adapter\nba.exe /s32 /n32"
  12691.           where the /s is important because it tells the adapter card the
  12692.           number of session and the /n tells the adapter card the number
  12693.           of commands.
  12694.  
  12695. 09010 GCI CLO Die Sitzung wurde geschlossen
  12696.  
  12697.       Reason: The session has been closed from either the local or remote
  12698.           computer.
  12699.  
  12700.       Remedy: None required.  Informational only.  This is notification for a
  12701.           pending SEND or RECEIVE command that the session has been
  12702.           closed.  For a HANG UP, the session was closed by the remote
  12703.           computer.
  12704.  
  12705. 09011 GCI CMC Der Befehl wurde abgebrochen
  12706.  
  12707.       Reason: Notification received that the command was canceled.  If the
  12708.           command that was canceled was a SEND or a CHAIN SEND, the
  12709.           session is abnormally terminated.
  12710.  
  12711.       Remedy: No action is required.
  12712.  
  12713. 09013 GCI DPL Der Name ist bereits in der lokalen Namentabelle
  12714.  
  12715.       Reason: Attempting to specify a name that is already in the local name
  12716.           table.
  12717.  
  12718.       Remedy: Specify another name.
  12719.  
  12720. 09014 GCI NTF Die Namentabelle ist voll
  12721.  
  12722.       Reason: Up to 16 names have already been added.
  12723.  
  12724.       Remedy: Wait until a delete name is issued so an entry will become
  12725.           available.
  12726.  
  12727. 09015 GCI NDR Befehl wurde ausgefⁿhrt, Name verweist noch auf aktive Sitzungen, wurde aber aus dem Register entfernt
  12728.  
  12729.       Reason: The name to be deleted is active in a session now, but is
  12730.           de-registered.  When the name is marked de-registered and has
  12731.           active sessions, it still occupies a slot in the table.  Name is
  12732.           unusable.
  12733.  
  12734.       Remedy: Close all sessions using this name for the DELETE command to
  12735.           complete.
  12736.  
  12737. 09017 GCI STF Die lokale Sitzungstabelle ist voll
  12738.  
  12739.       Reason: There are no available entries in the session table.  The number
  12740.           of sessions is user-specified.
  12741.  
  12742.       Remedy: The number of commands must be greater than the number of
  12743.           sessions.  Use NETRESET /SHOW to verify the number.  SQLBase
  12744.           needs one NETBios session for each database it is listening on,
  12745.           and one for each client workstation.  It also needs a free
  12746.           session available when a user switches from one cursor to
  12747.           another.
  12748.  
  12749. 09018 GCI SOR Sitzung ÷ffnen wurde verweigert
  12750.  
  12751.       Reason: No LISTEN command is outstanding on the remote computer.    This
  12752.           problem may stem from using the Novell NETBios and Microsoft
  12753.           Windows.    You may be able to connect to SQLBase from Microsoft
  12754.           Windows in standard mode but not when in enhanced mode.
  12755.  
  12756.       Remedy: Wait until a LISTEN is issued on the remote computer.  Many
  12757.           variables may be involved including the network card (type and
  12758.           brand), IRQ, client workstation computer speed, database server
  12759.           computer speed and which verions of network drivers.  If you
  12760.           slow down the database server computer, you can verify that this
  12761.           is the problem.  Changing network cards and/or IRQ's might be to
  12762.           solve the problem.  The best solution for Novell customers is to
  12763.           get Novell's NETBios 3.01 rev F or later and the latest versions
  12764.           of IPX and NET3 (at least rev d).  Moving to MS Windows 3.0A or
  12765.           later may also help.
  12766.  
  12767. 09019 GCI INN Unerlaubte Namenzahl
  12768.  
  12769.       Reason: Invalid name number.
  12770.  
  12771.       Remedy: You must use the original name number that was assigned to the
  12772.           name.
  12773.  
  12774. 09020 GCI CFN Aufgerufener Name wurde nicht gefunden/Keine Antwort
  12775.  
  12776.       Reason: The call name specified cannot be found or did not answer.  This
  12777.           problem may stem from using the Novell NETBios and Microsoft
  12778.           Windows.    You may be able to connect to SQLBase from Microsoft
  12779.           Windows in standard mode but not when in enhanced mode.
  12780.  
  12781.       Remedy: Verify that the call name used is correct.  Retry with the
  12782.           correct or a different call name or reissue if the remote
  12783.           computer is busy.  Many variables may be involved including the
  12784.           network card (type and brand), IRQ, client workstation computer
  12785.           speed, database server computer speed and which verions of
  12786.           network drivers.    If you slow down the database server computer,
  12787.           you can verify that this is the problem.    Changing network cards
  12788.           and/or IRQ's might be to solve the problem.  The best solution
  12789.           for Novell customers is to get Novell's NETBios 3.01 rev F or
  12790.           later and the latest versions of IPX and NET3 (at least rev d).
  12791.           Moving to MS Windows 3.0A or later may also help.
  12792.  
  12793. 09021 GCI NMF Name wurde nicht gefunden/* kann nicht spezifiziert werden oder Eingabe von 00H
  12794.  
  12795.       Reason: The specified name was either not in the table or an asterisk in
  12796.           column 1 of the name field or 00H.
  12797.  
  12798.       Remedy: An asterisk or 00H in column 1 is not allowed.  Retry with
  12799.           another name and verify that it is the correct name.
  12800.  
  12801. 09022 GCI NUR Name wird auf externem Adapter verwendet
  12802.  
  12803.       Reason: Unique names can only be used once on the network.
  12804.  
  12805.       Remedy: Specify another name.
  12806.  
  12807. 09023 GCI NWD Name wurde gel÷scht
  12808.  
  12809.       Reason: This occurs when a name is deleted and there are no outstanding
  12810.           LISTEN, RECEIVE ANY, RECEIVE DATAGRAM, or RECEIVE BROADCAST
  12811.           DATAGRAM commands for that name.
  12812.  
  12813.       Remedy: Not action required.
  12814.  
  12815. 09024 GCI SEA Sitzung wurde unnormal beendet
  12816.  
  12817.       Reason: Either the remote computer is powered off, the cable link is
  12818.           broken, the session SEND or CHAIN SEND has timed-out, or the
  12819.           SEND or CHAIN SEND was canceled, or a HANG UP timed-out waiting
  12820.           for a SEND to complete.
  12821.  
  12822.       Remedy: Check the remote end for status and check the cable.  For a SEND
  12823.           or CHAIN SEND, or RECEIVE or RECEIVE ANY, reestablish the
  12824.           session.
  12825.  
  12826. 09025 GCI NMC Namenskonflikt wurde entdeckt
  12827.  
  12828.       Reason: Network protocol has detected two or more identical names on the
  12829.           network.
  12830.  
  12831.       Remedy: Everyone on the network should delete that name immediately.
  12832.  
  12833. 09026 GCI IRD Inkompatibles ExterngerΣt
  12834.  
  12835.       Reason: Unexpected protocol packet received.
  12836.  
  12837.       Remedy: Verify that all units on the network agree with the network
  12838.           protocols.
  12839.  
  12840. 09028 GCI SEN Sitzung wurde unnormal beendet
  12841.  
  12842.       Reason: This error is currently undocumented.
  12843.  
  12844.       Remedy: Contact your local Gupta Technologies certified technical
  12845.           support center for assistance.
  12846.  
  12847. 09033 GCI IFB Schnittstelle ist belegt
  12848.  
  12849.       Reason: Attempting to call the BIOS out of an interrupt handler routine
  12850.           in process.
  12851.  
  12852.       Remedy: Return from the interrupt handler and try again later.
  12853.  
  12854. 09034 GCI TMC Zuviele ausstehende Befehle
  12855.  
  12856.       Reason: The maximum number of commands are outstanding.
  12857.  
  12858.       Remedy: If not at maximum number, refer to RESET.  If at maximum number,
  12859.           retry at a later time.
  12860.  
  12861. 09035 GCI IAN Ungⁿltige Adapterzahl
  12862.  
  12863.       Reason: Attempting to specify a number other than 00H or 01H.
  12864.  
  12865.       Remedy: Specify either 00H for the first adapter of 01H if you have and
  12866.           want to use the second adapter.  Correct the number and try
  12867.           again.
  12868.  
  12869. 09036 GCI CDC Befehl wurde wΣhrend des Abbrechens ausgefⁿhrt
  12870.  
  12871.       Reason: Attempting to cancel a command that already completed, or never
  12872.           existed.
  12873.  
  12874.       Remedy: No action required.
  12875.  
  12876. 09037 GCI RNS Es wurde ein reservierter Name spezifiziert
  12877.  
  12878.       Reason: This error is currently undocumented.
  12879.  
  12880.       Remedy: Contact your local Gupta Technologies certified technical
  12881.           support center for assistance.
  12882.  
  12883. 09038 GCI NVC Befehl ist zum Abbrechen nicht gⁿltig
  12884.  
  12885.       Reason: Attempting to cancel a command that is invalid to cancel.
  12886.  
  12887.       Remedy: See CANCEL command for the list of commands not valid to cancel.
  12888.  
  12889. 09255 GCI PND Komplettierung am Laufen
  12890.  
  12891.       Reason: This error is currently undocumented.
  12892.  
  12893.       Remedy: Contact your local Gupta Technologies certified technical
  12894.           support center for assistance.
  12895.  
  12896. 09257 GCI NNF Netzwerk ist au▀er Betrieb
  12897.  
  12898.       Reason: A network adapter has not been found.
  12899.  
  12900.       Remedy: Verify that the network adapter is available in this computer.
  12901.           Check that the network adapter is properly installed.  Is this
  12902.           computer connected to a network?    Try increasing the number of
  12903.           NETBios sessions and commands.
  12904.  
  12905. 09258 GCI INP Ungⁿltiger Netzwerkzeiger
  12906.  
  12907.       Reason: This error is currently undocumented.
  12908.  
  12909.       Remedy: Contact your local Gupta Technologies certified technical
  12910.           support center for assistance.
  12911.  
  12912. 09271 GCI CGA Adresse kann nicht eingelesen werden
  12913.  
  12914.       Reason: This error is currently undocumented.
  12915.  
  12916.       Remedy: Contact your local Gupta Technologies certified technical
  12917.           support center for assistance.
  12918.  
  12919. 09259 GCI CRH Hostname kann nicht verΣndert werden
  12920.  
  12921.       Reason: This error is currently undocumented.
  12922.  
  12923.       Remedy: Contact your local Gupta Technologies certified technical
  12924.           support center for assistance.
  12925.  
  12926. 09260 GCI DNC Datenbankname wurde nicht konfiguriert
  12927.  
  12928.       Reason: This error is currently undocumented.
  12929.  
  12930.       Remedy: Contact your local Gupta Technologies certified technical
  12931.           support center for assistance.
  12932.  
  12933. 09261 GCI INI Ungⁿltige Netzschnittstelle
  12934.  
  12935.       Reason: This error is currently undocumented.
  12936.  
  12937.       Remedy: Contact your local Gupta Technologies certified technical
  12938.           support center for assistance.
  12939.  
  12940. 09262 GCI INR Netzschnittstelle ist nicht aktiv
  12941.  
  12942.       Reason: This error is currently undocumented.
  12943.  
  12944.       Remedy: Contact your local Gupta Technologies certified technical
  12945.           support center for assistance.
  12946.  
  12947. 09263 GCI OOM Kein weiterer Speicherplatz vorhanden
  12948.  
  12949.       Reason: This error is currently undocumented.
  12950.  
  12951.       Remedy: Contact your local Gupta Technologies certified technical
  12952.           support center for assistance.
  12953.  
  12954. 09264 GCI INH Ungⁿltiger Handle
  12955.  
  12956.       Reason: This error is currently undocumented.
  12957.  
  12958.       Remedy: Contact your local Gupta Technologies certified technical
  12959.           support center for assistance.
  12960.  
  12961. 09265 GCI SSE Sitzungsfehler
  12962.  
  12963.       Reason: This error is currently undocumented.
  12964.  
  12965.       Remedy: Contact your local Gupta Technologies certified technical
  12966.           support center for assistance.
  12967.  
  12968. 09266 GCI NCF Keine Konfigurationsdatei
  12969.  
  12970.       Reason: This error is currently undocumented.
  12971.  
  12972.       Remedy: Contact your local Gupta Technologies certified technical
  12973.           support center for assistance.
  12974.  
  12975. 09267 GCI IDL COM DLL ist nicht gⁿltig
  12976.  
  12977.       Reason: This error is currently undocumented.
  12978.  
  12979.       Remedy: Contact your local Gupta Technologies certified technical
  12980.           support center for assistance.
  12981.  
  12982. 09268 GCI CCN Verbindung nicht m÷glich
  12983.  
  12984.       Reason: This error is currently undocumented.
  12985.  
  12986.       Remedy: Contact your local Gupta Technologies certified technical
  12987.           support center for assistance.
  12988.  
  12989. 09269 GCI TMA Zu viele Argumente
  12990.  
  12991.       Reason: This error is currently undocumented.
  12992.  
  12993.       Remedy: Contact your local Gupta Technologies certified technical
  12994.           support center for assistance.
  12995.  
  12996. 09270 GCI IAL Ungⁿltige Argumentenliste
  12997.  
  12998.       Reason: This error is currently undocumented.
  12999.  
  13000.       Remedy: Contact your local Gupta Technologies certified technical
  13001.           support center for assistance.
  13002.  
  13003. 09271 GCI AIN Wurde bereits initialisiert
  13004.  
  13005.       Reason: This error is currently undocumented.
  13006.  
  13007.       Remedy: Contact your local Gupta Technologies certified technical
  13008.           support center for assistance.
  13009.  
  13010. 09272 GCI NTI Wurde nicht initialisiert
  13011.  
  13012.       Reason: This error is currently undocumented.
  13013.  
  13014.       Remedy: Contact your local Gupta Technologies certified technical
  13015.           support center for assistance.
  13016.  
  13017. 09273 GCI TIP Beendung wurde eingeleitet
  13018.  
  13019.       Reason: This error is currently undocumented.
  13020.  
  13021.       Remedy: Contact your local Gupta Technologies certified technical
  13022.           support center for assistance.
  13023.  
  13024. 09274 GCI MCE Eintrag in die Konfigurationsdatei fehlt
  13025.  
  13026.       Reason: This error is currently undocumented.
  13027.  
  13028.       Remedy: Contact your local Gupta Technologies certified technical
  13029.           support center for assistance.
  13030.  
  13031. 09275 GCI NCD Es wurden keine KonfigurationseintrΣge festgelegt
  13032.  
  13033.       Reason: This error is currently undocumented.
  13034.  
  13035.       Remedy: Contact your local Gupta Technologies certified technical
  13036.           support center for assistance.
  13037.  
  13038. 09276 GCI STO Zeitsperre fⁿr Semaphor
  13039.  
  13040.       Reason: This error is currently undocumented.
  13041.  
  13042.       Remedy: Contact your local Gupta Technologies certified technical
  13043.           support center for assistance.
  13044.  
  13045. 09277 GCI CNL Fehler beim Abbruchbefehl
  13046.  
  13047.       Reason: This error is currently undocumented.
  13048.  
  13049.       Remedy: Contact your local Gupta Technologies certified technical
  13050.           support center for assistance.
  13051.  
  13052. 09278 GCI OOS Keine Sitzungen mehr vorhanden
  13053.  
  13054.       Reason: This error is currently undocumented.
  13055.  
  13056.       Remedy: Contact your local Gupta Technologies certified technical
  13057.           support center for assistance.
  13058.  
  13059. 09279 GCI EOR Bestimmter Protokolleintrag wurde nicht gefunden
  13060.  
  13061.       Reason: This error is currently undocumented.
  13062.  
  13063.       Remedy: Contact your local Gupta Technologies certified technical
  13064.           support center for assistance.
  13065.  
  13066. 09281 GCI COC Konfigurationsdatei kann nicht ge÷ffnet werden
  13067.  
  13068.       Reason: This error is currently undocumented.
  13069.  
  13070.       Remedy: Contact your local Gupta Technologies certified technical
  13071.           support center for assistance.
  13072.  
  13073. 09282 GCI GEN Allgemeiner Fehler
  13074.  
  13075.       Reason: This error is currently undocumented.
  13076.  
  13077.       Remedy: Contact your local Gupta Technologies certified technical
  13078.           support center for assistance.
  13079.  
  13080. 09283 GCI IVL Bibliotheksversion ist nicht korrekt
  13081.  
  13082.       Reason: This error is currently undocumented.
  13083.  
  13084.       Remedy: Contact your local Gupta Technologies certified technical
  13085.           support center for assistance.
  13086.  
  13087. 09284 GCI ICK Ungⁿltiges GCI-Konfigurationschlⁿsselwort oder -parameter
  13088.  
  13089.       Reason: This error is currently undocumented.
  13090.  
  13091.       Remedy: Contact your local Gupta Technologies certified technical
  13092.           support center for assistance.
  13093.  
  13094. 09285 GCI CGF Flags k÷nnen nicht eingelesen werden
  13095.  
  13096.       Reason: This error is currently undocumented.
  13097.  
  13098.       Remedy: Contact your local Gupta Technologies certified technical
  13099.           support center for assistance.
  13100.  
  13101. 09286 GCI INU Netzschnittstelle ist nicht aktiv
  13102.  
  13103.       Reason: This error is currently undocumented.
  13104.  
  13105.       Remedy: Contact your local Gupta Technologies certified technical
  13106.           support center for assistance.
  13107.  
  13108. 09287 GCI NAC Adressenkonflikt im Netzwerk
  13109.  
  13110.       Reason: This error is currently undocumented.
  13111.  
  13112.       Remedy: Contact your local Gupta Technologies certified technical
  13113.           support center for assistance.
  13114.  
  13115. 09288 GCI CFP Protokoll wurde nicht gefunden
  13116.  
  13117.       Reason: This error is currently undocumented.
  13118.  
  13119.       Remedy: Contact your local Gupta Technologies certified technical
  13120.           support center for assistance.
  13121.  
  13122. 09289 GCI CCS Anschlu▀ kann nicht angelegt werden
  13123.  
  13124.       Reason: This error is currently undocumented.
  13125.  
  13126.       Remedy: Contact your local Gupta Technologies certified technical
  13127.           support center for assistance.
  13128.  
  13129. 09290 GCI CBS Anschlu▀ kann nicht zugeordnet werden
  13130.  
  13131.       Reason: This error is currently undocumented.
  13132.  
  13133.       Remedy: Contact your local Gupta Technologies certified technical
  13134.           support center for assistance.
  13135.  
  13136. 09291 GCI CLS H÷ren auf Anschlu▀ nicht m÷glich
  13137.  
  13138.       Reason: This error is currently undocumented.
  13139.  
  13140.       Remedy: Contact your local Gupta Technologies certified technical
  13141.           support center for assistance.
  13142.  
  13143. 09292 GCI CAC Verbindung kann nicht genutzt werden
  13144.  
  13145.       Reason: This error is currently undocumented.
  13146.  
  13147.       Remedy: Contact your local Gupta Technologies certified technical
  13148.           support center for assistance.
  13149.  
  13150. 09293 GCI NDL Kommunikations-DLL-Dateien k÷nnen nicht geladen werden. Netzwerk ist m÷glicherweise nicht installiert
  13151.  
  13152.       Reason: This error is currently undocumented.
  13153.  
  13154.       Remedy: Contact your local Gupta Technologies certified technical
  13155.           support center for assistance.
  13156.  
  13157. 09294 GCI CAS Semaphor kann nicht zugewiesen werden
  13158.  
  13159.       Reason: This error is currently undocumented.
  13160.  
  13161.       Remedy: Contact your local Gupta Technologies certified technical
  13162.           support center for assistance.
  13163.  
  13164. 09295 GCI 295 NICHT VERWENDET
  13165.  
  13166.       Reason: This is error code is currently not used by the SQLBase system.
  13167.  
  13168.       Remedy: None.  This error code should never occur.  If you get this
  13169.           error, contact your local Gupta Technologies certified
  13170.           technical support center.
  13171.  
  13172. 09296 GCI CIN Abbruch ist fⁿr diese COM DLL nicht gⁿltig
  13173.  
  13174.       Reason: This error is currently undocumented.
  13175.  
  13176.       Remedy: Contact your local Gupta Technologies certified technical
  13177.           support center for assistance.
  13178.  
  13179. 09297 GCI DAE DEALLOCATE-Wortfehler
  13180.  
  13181.       Reason: This error is currently undocumented.
  13182.  
  13183.       Remedy: Contact your local Gupta Technologies certified technical
  13184.           support center for assistance.
  13185.  
  13186. 09298 GCI TEE TPENDED-Wortfehler
  13187.  
  13188.       Reason: This error is currently undocumented.
  13189.  
  13190.       Remedy: Contact your local Gupta Technologies certified technical
  13191.           support center for assistance.
  13192.  
  13193. 09299 GCI RWE RECEIVE_AND_WAIT-Wortfehler
  13194.  
  13195.       Reason: This error is currently undocumented.
  13196.  
  13197.       Remedy: Contact your local Gupta Technologies certified technical
  13198.           support center for assistance.
  13199.  
  13200. 09300 GCI SDA SEND_DATA-Wortfehler
  13201.  
  13202.       Reason: This error is currently undocumented.
  13203.  
  13204.       Remedy: Contact your local Gupta Technologies certified technical
  13205.           support center for assistance.
  13206.  
  13207. 09301 GCI DNF Name der Eingabedatenbank wurde in Hostname-Tabelle nicht gefunden
  13208.  
  13209.       Reason: This error is currently undocumented.
  13210.  
  13211.       Remedy: Contact your local Gupta Technologies certified technical
  13212.           support center for assistance.
  13213.  
  13214. 09302 GCI NLA Es stehen keine LUs zur Verfⁿgung, um eine Sitzung zu starten
  13215.  
  13216.       Reason: This error is currently undocumented.
  13217.  
  13218.       Remedy: Contact your local Gupta Technologies certified technical
  13219.           support center for assistance.
  13220.  
  13221. 09303 GCI AEE Fehler beim Konvertieren von ASCII-zu-EBCDIC
  13222.  
  13223.       Reason: This error is currently undocumented.
  13224.  
  13225.       Remedy: Contact your local Gupta Technologies certified technical
  13226.           support center for assistance.
  13227.  
  13228. 09304 GCI TSE TPSTARTED-Wortfehler
  13229.  
  13230.       Reason: This error is currently undocumented.
  13231.  
  13232.       Remedy: Contact your local Gupta Technologies certified technical
  13233.           support center for assistance.
  13234.  
  13235. 09305 GCI ALE ALLOCATE-Wortfehler
  13236.  
  13237.       Reason: This error is currently undocumented.
  13238.  
  13239.       Remedy: Contact your local Gupta Technologies certified technical
  13240.           support center for assistance.
  13241.  
  13242. 09306 GCI UAB Eingabe/Ausgabepuffer k÷nnen nicht zugewiesen werden
  13243.  
  13244.       Reason: This error is currently undocumented.
  13245.  
  13246.       Remedy: Contact your local Gupta Technologies certified technical
  13247.           support center for assistance.
  13248.  
  13249. 09307 GCI CMN Kommunikationsmanager lΣuft nicht
  13250.  
  13251.       Reason: This error is currently undocumented.
  13252.  
  13253.       Remedy: Contact your local Gupta Technologies certified technical
  13254.           support center for assistance.
  13255.  
  13256. 09308 GCI FLE FLUSH-Wortfehler
  13257.  
  13258.       Reason: This error is currently undocumented.
  13259.  
  13260.       Remedy: Contact your local Gupta Technologies certified technical
  13261.           support center for assistance.
  13262.  
  13263. 09309 GCI SNV Benutzerkennungs/Pa▀wort-Sicherheit ungⁿltig
  13264.  
  13265.       Reason: This error is currently undocumented.
  13266.  
  13267.       Remedy: Contact your local Gupta Technologies certified technical
  13268.           support center for assistance.
  13269.  
  13270. 09310 GCI LNN H÷renname wurde vorher nicht registriert
  13271.  
  13272.       Reason: This error is currently undocumented.
  13273.  
  13274.       Remedy: Contact your local Gupta Technologies certified technical
  13275.           support center for assistance.
  13276.  
  13277. 09311 GCI LNR H÷renname ist nicht zum H÷ren bereit
  13278.  
  13279.       Reason: This error is currently undocumented.
  13280.  
  13281.       Remedy: Contact your local Gupta Technologies certified technical
  13282.           support center for assistance.
  13283.  
  13284. 09312 GCI RAE RECEIVE_ALLOCATE-Wortfehler
  13285.  
  13286.       Reason: This error is currently undocumented.
  13287.  
  13288.       Remedy: Contact your local Gupta Technologies certified technical
  13289.           support center for assistance.
  13290.  
  13291. 09313 GCI RAC H÷ren wurde abgebrochen
  13292.  
  13293.       Reason: This error is currently undocumented.
  13294.  
  13295.       Remedy: Contact your local Gupta Technologies certified technical
  13296.           support center for assistance.
  13297.  
  13298. 09314 GCI TLM Tranid, lokale LU oder Modusname fehlt
  13299.  
  13300.       Reason: This error is currently undocumented.
  13301.  
  13302.       Remedy: Contact your local Gupta Technologies certified technical
  13303.           support center for assistance.
  13304.  
  13305. 09315 GCI HNM Serverpfad, aber kein Hostname wurde spezifiziert
  13306.  
  13307.       Reason: This error is currently undocumented.
  13308.  
  13309.       Remedy: Contact your local Gupta Technologies certified technical
  13310.           support center for assistance.
  13311.  
  13312. 09316 GCI SNF Servername wurde in Servertabelle nicht gefunden
  13313.  
  13314.       Reason: This error is currently undocumented.
  13315.  
  13316.       Remedy: Contact your local Gupta Technologies certified technical
  13317.           support center for assistance.
  13318.  
  13319. 09317 GCI NSP Diese Funktion wird nicht voll unterstⁿtzt
  13320.  
  13321.       Reason: This error is currently undocumented.
  13322.  
  13323.       Remedy: Contact your local Gupta Technologies certified technical
  13324.           support center for assistance.
  13325.  
  13326. 09318 GCI TNA Host-Transaktionsprogramm ist nicht verfⁿgbar
  13327.  
  13328.       Reason: This error is currently undocumented.
  13329.  
  13330.       Remedy: Contact your local Gupta Technologies certified technical
  13331.           support center for assistance.
  13332.  
  13333. 09319 GCI TNR Host-Transaktionsname wurde nicht erkannt
  13334.  
  13335.       Reason: This error is currently undocumented.
  13336.  
  13337.       Remedy: Contact your local Gupta Technologies certified technical
  13338.           support center for assistance.
  13339.  
  13340. 09320 GCI DAP Host-Transaktion wurde beendet
  13341.  
  13342.       Reason: This error is currently undocumented.
  13343.  
  13344.       Remedy: Contact your local Gupta Technologies certified technical
  13345.           support center for assistance.
  13346.  
  13347. 09321 GCI CSA Kommunikationsmanager wurde beendet
  13348.  
  13349.       Reason: This error is currently undocumented.
  13350.  
  13351.       Remedy: Contact your local Gupta Technologies certified technical
  13352.           support center for assistance.
  13353.  
  13354. 09322 GCI SUS Fⁿr DBWINDOW ist nur eine Aufgabenverbindung erlaubt
  13355.  
  13356.       Reason: DBWINDOW is a single user database engine and more than one task
  13357.           is attempting to connect the database.
  13358.  
  13359.       Remedy: None.  Multple tasks are not allowed to be connected to the
  13360.           DBWINDOW database simultaneously.
  13361.  
  13362. 09323 GCI TPU Transportgeber ist nicht verfⁿgbar
  13363.  
  13364.       Reason: This error is currently undocumented.
  13365.  
  13366.       Remedy: Contact your local Gupta Technologies certified technical
  13367.           support center for assistance.
  13368.  
  13369. 09324 GCI TAU Transportadresse ist nicht verfⁿgbar
  13370.  
  13371.       Reason: This error is currently undocumented.
  13372.  
  13373.       Remedy: Contact your local Gupta Technologies certified technical
  13374.           support center for assistance.
  13375.  
  13376. 09325 GCI TLF Transport-H÷ren ist fehlgeschlagen
  13377.  
  13378.       Reason: This error is currently undocumented.
  13379.  
  13380.       Remedy: Contact your local Gupta Technologies certified technical
  13381.           support center for assistance.
  13382.  
  13383. 09326 GCI TAF Transport-Annahme ist fehlgeschlagen
  13384.  
  13385.       Reason: This error is currently undocumented.
  13386.  
  13387.       Remedy: Contact your local Gupta Technologies certified technical
  13388.           support center for assistance.
  13389.  
  13390. 09327 GCI OSE Systemfehler
  13391.  
  13392.       Reason: This error is currently undocumented.
  13393.  
  13394.       Remedy: Contact your local Gupta Technologies certified technical
  13395.           support center for assistance.
  13396.  
  13397. 09328 GCI ALU ATTACH_LU verb Fehler
  13398.       Reason: The APPC protocol received an error while issuing the
  13399.           ATTACH_LU verb.  An error code identifying the specific
  13400.           reason for the failure was displayed in an accompanying
  13401.           message.    Please refer to the NOVELL NetWare LU6.2 Technical
  13402.           Reference, Appendix C, for a description of the error code
  13403.           received.
  13404.  
  13405.       Remedy: This error should not occur.  Call Gupta Technologies
  13406.           Technical support for assistance.
  13407.  
  13408. 09329 GCI ADC ACTIVATE_DLC verb Fehler
  13409.  
  13410.       Reason: The APPC protocol received an error while issuing the
  13411.           ACTIVATE_DLC verb.  An error code identifying the specific
  13412.           reason for the failure was displayed in an accompanying
  13413.           message.    Please refer to the NOVELL NetWare LU6.2 Technical
  13414.           Reference, Appendix C, for a description of the error code
  13415.           received.
  13416.  
  13417.       Remedy: This error should not occur.  Call Gupta Technologies
  13418.           Technical support for assistance.
  13419.  
  13420. 09330 GCI CNS CNOS verb Fehler
  13421.       Reason: The APPC protocol received an error while issuing the
  13422.           CNOS verb.  An error code identifying the specific
  13423.           reason for the failure was displayed in an accompanying
  13424.           message.    Please refer to the NOVELL NetWare LU6.2 Technical
  13425.           Reference, Appendix B and Appendix C, for a description of
  13426.           the error code received.
  13427.  
  13428.       Remedy: This error should not occur.  Call Gupta Technologies
  13429.           Technical support for assistance.
  13430.  
  13431. 09331 GCI SNI SPX nicht installiert
  13432.  
  13433.       Reason: The SPX Interface has not been installed correctly.
  13434.           The call to SPXInitialize (NWIPXSPX) has failed.
  13435.  
  13436.       Remedy: Contact Novell Technical Support.
  13437.  
  13438.  
  13439. The errors documented in this section of the Error Guide are for errors that
  13440. are generated by the SQLBase Group Page Manager.
  13441.  
  13442. 09401 SFS BSI Gruppenseite hat eine ungeeignete Signatur
  13443.  
  13444.       Reason: This error is currently undocumented.
  13445.  
  13446.       Remedy: Contact your local Gupta Technologies certified technical
  13447.           support center for assistance.
  13448.  
  13449. 09402 GRP BFL Gruppenseite hat unbrauchbare Flags
  13450.  
  13451.       Reason: This error is currently undocumented.
  13452.  
  13453.       Remedy: Contact your local Gupta Technologies certified technical
  13454.           support center for assistance.
  13455.  
  13456. 09403 GRP BAP Unbrauchbare Seitenzuweisungsnummer
  13457.  
  13458.       Reason: This error is currently undocumented.
  13459.  
  13460.       Remedy: Contact your local Gupta Technologies certified technical
  13461.           support center for assistance.
  13462.  
  13463. 09404 GRP BGP Unbrauchbare Gruppenseitennummer
  13464.  
  13465.       Reason: This error is currently undocumented.
  13466.  
  13467.       Remedy: Contact your local Gupta Technologies certified technical
  13468.           support center for assistance.
  13469.  
  13470. 09405 GRP BPP Unbrauchbare physikalische Seitennummer
  13471.  
  13472.       Reason: This error is currently undocumented.
  13473.  
  13474.       Remedy: Contact your local Gupta Technologies certified technical
  13475.           support center for assistance.
  13476.  
  13477. 09406 GRP PNA Zuweisungsseite wurde nicht zugewiesen
  13478.  
  13479.       Reason: This error is currently undocumented.
  13480.  
  13481.       Remedy: Contact your local Gupta Technologies certified technical
  13482.           support center for assistance.
  13483.  
  13484. 09407 GRP BPT Unbrauchbarer Seitentyp in Zuweisungsseite
  13485.  
  13486.       Reason: This error is currently undocumented.
  13487.  
  13488.       Remedy: Contact your local Gupta Technologies certified technical
  13489.           support center for assistance.
  13490.  
  13491.  
  13492. The errors documented in this section of the Error Guide are for errors that
  13493. are generated by the SQLBase System Free Space Manager.
  13494.  
  13495. 09501 SFS BSI CHECK DATABASE ist fehlgeschlagen (SFS BSI)
  13496.  
  13497.       Reason: CHECK DATABASE has discovered a problem in the database.
  13498.  
  13499.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13500.           object is damaged, drop that object.  Otherwise, try unloading
  13501.           and reloading the database or restore from a backup copy of the
  13502.           database.  You might also try unloading table by table to save
  13503.           as much of the database as possible.
  13504.  
  13505. 09502 SFS BNP CHECK DATABASE ist fehlgeschlagen (SFS BNP)
  13506.  
  13507.       Reason: CHECK DATABASE has discovered a problem in the database.
  13508.  
  13509.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13510.           object is damaged, drop that object.  Otherwise, try unloading
  13511.           and reloading the database or restore from a backup copy of the
  13512.           database.  You might also try unloading table by table to save
  13513.           as much of the database as possible.
  13514.  
  13515. 09503 SFS BPT CHECK DATABASE ist fehlgeschlagen (SFS BPT)
  13516.  
  13517.       Reason: CHECK DATABASE has discovered a problem in the database.
  13518.  
  13519.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13520.           object is damaged, drop that object.  Otherwise, try unloading
  13521.           and reloading the database or restore from a backup copy of the
  13522.           database.  You might also try unloading table by table to save
  13523.           as much of the database as possible.
  13524.  
  13525.  
  13526. The errors documented in this section of the Error Guide are for errors that
  13527. SQLBase index related errors.
  13528.  
  13529. 09601 IDX BPT CHECK DATABASE ist fehlgeschlagen (IDX BPT)
  13530.  
  13531.       Reason: CHECK DATABASE has discovered a problem in the database.
  13532.  
  13533.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13534.           object is damaged, drop that object.  Otherwise, try unloading
  13535.           and reloading the database or restore from a backup copy of the
  13536.           database.  You might also try unloading table by table to save
  13537.           as much of the database as possible.
  13538.  
  13539. 09602 IDX BFV CHECK DATABASE ist fehlgeschlagen (IDX BFV)
  13540.  
  13541.       Reason: CHECK DATABASE has discovered a problem in the database.
  13542.  
  13543.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13544.           object is damaged, drop that object.  Otherwise, try unloading
  13545.           and reloading the database or restore from a backup copy of the
  13546.           database.  You might also try unloading table by table to save
  13547.           as much of the database as possible.
  13548.  
  13549. 09603 IDX BLV CHECK DATABASE ist fehlgeschlagen (IDX BLV)
  13550.  
  13551.       Reason: CHECK DATABASE has discovered a problem in the database.
  13552.  
  13553.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13554.           object is damaged, drop that object.  Otherwise, try unloading
  13555.           and reloading the database or restore from a backup copy of the
  13556.           database.  You might also try unloading table by table to save
  13557.           as much of the database as possible.
  13558.  
  13559. 09604 IDX BMK CHECK DATABASE ist fehlgeschlagen (IDX BMK)
  13560.  
  13561.       Reason: CHECK DATABASE has discovered a problem in the database.
  13562.  
  13563.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13564.           object is damaged, drop that object.  Otherwise, try unloading
  13565.           and reloading the database or restore from a backup copy of the
  13566.           database.  You might also try unloading table by table to save
  13567.           as much of the database as possible.
  13568.  
  13569. 09605 IDX BKL CHECK DATABASE ist fehlgeschlagen (IDX BKL)
  13570.  
  13571.       Reason: CHECK DATABASE has discovered a problem in the database.
  13572.  
  13573.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13574.           object is damaged, drop that object.  Otherwise, try unloading
  13575.           and reloading the database or restore from a backup copy of the
  13576.           database.  You might also try unloading table by table to save
  13577.           as much of the database as possible.
  13578.  
  13579. 09606 IDX BEO CHECK DATABASE ist fehlgeschlagen (IDX BEO)
  13580.  
  13581.       Reason: CHECK DATABASE has discovered a problem in the database.
  13582.  
  13583.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13584.           object is damaged, drop that object.  Otherwise, try unloading
  13585.           and reloading the database or restore from a backup copy of the
  13586.           database.  You might also try unloading table by table to save
  13587.           as much of the database as possible.
  13588.  
  13589. 09607 IDX DKU CHECK DATABASE ist fehlgeschlagen (IDX DKU)
  13590.  
  13591.       Reason: CHECK DATABASE has discovered a problem in the database.
  13592.  
  13593.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13594.           object is damaged, drop that object.  Otherwise, try unloading
  13595.           and reloading the database or restore from a backup copy of the
  13596.           database.  You might also try unloading table by table to save
  13597.           as much of the database as possible.
  13598.  
  13599. 09608 IDX SDT CHECK DATABASE ist fehlgeschlagen (IDX SDT)
  13600.  
  13601.       Reason: CHECK DATABASE has discovered a problem in the database.
  13602.  
  13603.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13604.           object is damaged, drop that object.  Otherwise, try unloading
  13605.           and reloading the database or restore from a backup copy of the
  13606.           database.  You might also try unloading table by table to save
  13607.           as much of the database as possible.
  13608.  
  13609. 09609 IDX KIF CHECK DATABASE ist fehlgeschlagen (IDX KIF)
  13610.  
  13611.       Reason: CHECK DATABASE has discovered a problem in the database.
  13612.  
  13613.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13614.           object is damaged, drop that object.  Otherwise, try unloading
  13615.           and reloading the database or restore from a backup copy of the
  13616.           database.  You might also try unloading table by table to save
  13617.           as much of the database as possible.
  13618.  
  13619. 09610 IDX WNE CHECK DATABASE ist fehlgeschlagen (IDX WNE)
  13620.  
  13621.       Reason: CHECK DATABASE has discovered a problem in the database.
  13622.  
  13623.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13624.           object is damaged, drop that object.  Otherwise, try unloading
  13625.           and reloading the database or restore from a backup copy of the
  13626.           database.  You might also try unloading table by table to save
  13627.           as much of the database as possible.
  13628.  
  13629. 09611 IDX LNS CHECK DATABASE ist fehlgeschlagen (IDX LNS)
  13630.  
  13631.       Reason: CHECK DATABASE has discovered a problem in the database.
  13632.  
  13633.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13634.           object is damaged, drop that object.  Otherwise, try unloading
  13635.           and reloading the database or restore from a backup copy of the
  13636.           database.  You might also try unloading table by table to save
  13637.           as much of the database as possible.
  13638.  
  13639. 09612 IDX BOA CHECK DATABASE ist fehlgeschlagen (IDX BOA)
  13640.  
  13641.       Reason: CHECK DATABASE has discovered a problem in the database.
  13642.  
  13643.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13644.           object is damaged, drop that object.  Otherwise, try unloading
  13645.           and reloading the database or restore from a backup copy of the
  13646.           database.  You might also try unloading table by table to save
  13647.           as much of the database as possible.
  13648.  
  13649. 09613 IDX NLC CHECK DATABASE ist fehlgeschlagen (IDX NLC)
  13650.  
  13651.       Reason: CHECK DATABASE has discovered a problem in the database.
  13652.  
  13653.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13654.           object is damaged, drop that object.  Otherwise, try unloading
  13655.           and reloading the database or restore from a backup copy of the
  13656.           database.  You might also try unloading table by table to save
  13657.           as much of the database as possible.
  13658.  
  13659. 09614 IDX IRF Datenbank oder Datenbankobjekt ist fehlerhaft (IDX IRF)
  13660.  
  13661.       Reason: The database or an object in the database has been discovered
  13662.           to be inconsistent or lacking integrity.
  13663.  
  13664.       Remedy: Run a CHECK DATABASE command.
  13665.  
  13666. 09615 IDX IDF Datenbank oder Datenbankobjekt ist fehlerhaft (IDX IDF)
  13667.  
  13668.       Reason: The database or an object in the database has been discovered
  13669.           to be inconsistent or lacking integrity.
  13670.  
  13671.       Remedy: Run a CHECK DATABASE command.
  13672.  
  13673.  
  13674. The errors documented in this section of the Error Guide are for errors that
  13675. are generated by the SQLBase CHECK DATABASE facility.
  13676.  
  13677. 09701 CHK BAS CHECK DATABASE ist fehlgeschlagen (CHK BAS)
  13678.  
  13679.       Reason: CHECK DATABASE has discovered a problem in the database.
  13680.  
  13681.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13682.           object is damaged, drop that object.  Otherwise, try unloading
  13683.           and reloading the database or restore from a backup copy of the
  13684.           database.  You might also try unloading table by table to save
  13685.           as much of the database as possible.
  13686.  
  13687. 09702 CHK LOP CHECK DATABASE ist fehlgeschlagen (CHK LOP)
  13688.  
  13689.       Reason: CHECK DATABASE has discovered a problem in the database.
  13690.  
  13691.       Remedy: If the CHECK DATABASE displays a message saying that a database
  13692.           object is damaged, drop that object.  Otherwise, try unloading
  13693.           and reloading the database or restore from a backup copy of the
  13694.           database.  You might also try unloading table by table to save
  13695.           as much of the database as possible.
  13696.  
  13697.  
  13698. The errors documented in this section of the Error Guide are for general SQL
  13699. parsing errors.  These errors generally occur during the compile of a SQL
  13700. statement and the statement violates the syntax for that SQL command.
  13701.  
  13702. 09801 PRS TMT Zu viele Tabellen zum Verknⁿpfen
  13703.  
  13704.       Reason: The number of tables attempting to be joined exceeds the SQLBase
  13705.           limit of 20 tables
  13706.  
  13707.       Remedy: Modify SQL statement.
  13708.  
  13709. 09802 PRS IST Ungⁿltiger Statistiktyp
  13710.  
  13711.       Reason: Attempting to UPDATE STATISTICS and a keyword of INDEX, TABLE,
  13712.           or DATABASE is expecting immediately after UPDATE STATISTICS and
  13713.           it is missing or misspelled.
  13714.  
  13715.       Remedy: Correct the UPDATE STATISTICS command by properly specifying the
  13716.           keyword of INDEX, TABLE, or DATABASE immediately after UPDATE
  13717.           STATISTICS.
  13718.  
  13719. 09803 PRS ICO Objekt fⁿr CHECK nicht gⁿltig
  13720.  
  13721.       Reason: Attempting a CHECK DATABASE command and the keyword DATABASE is
  13722.           either missing or misspelled.
  13723.  
  13724.       Remedy: Correct the CHECK DATABASE command by properly specifying the
  13725.           keyword DATABASE immediately after the keyword CHECK.
  13726.  
  13727. 09804 PRS MEK EXISTS-Schlⁿsselwort fehlt
  13728.  
  13729.       Reason: Attempting a SQL UPDATE statement and the CHECK EXISTS clause is
  13730.           being used but the kewyord EXISTS is either missing or
  13731.           misspelled.
  13732.  
  13733.       Remedy: Correct the UPDATE statement by properly specifying the keyword
  13734.           EXISTS immediately after the keyword CHECK.
  13735.  
  13736. 09805 PRS CNH Nur CLUSTERED HASHED-Indizes werden unterstⁿtzt
  13737.  
  13738.       Reason: Attempting a CREATE INDEX statement and the keyword CLUSTERED
  13739.           has been found but the keyword HASHED is either missing or
  13740.           misspelled.
  13741.  
  13742.       Remedy: Correct the CREATE INDEX statement by properly specifying the
  13743.           keyword HASHED immediately after the keyword CLUSTERED.  SQLBase
  13744.           currently only supports CLUSTERED HASHED indexes and does not
  13745.           support CLUSTERED indexes or HASHED indexes.
  13746.  
  13747. 09806 PRS MUK DEFAULT-Schlⁿsselwort fehlt
  13748.  
  13749.       Reason: Trying a CREATE TABLE or ALTER TABLE statement and a column is
  13750.           attempting to be defined with possibly the NOT NULL WITH DEFAULT
  13751.           clause but the keyword DEFAULT is either missing or misspelled.
  13752.  
  13753.       Remedy: Correct the CREATE TABLE or ALTER TABLE statement by properly
  13754.           specifying the keyword DEFAULT immediately after the keywords
  13755.           NOT NULL WITH.
  13756.  
  13757. 09807 PRS MDB Datenbankname fehlt
  13758.  
  13759.       Reason: Attempting a CREATE TABLE statement and the IN DATABASE clause
  13760.           is being used but the database name is missing.
  13761.  
  13762.       Remedy: Correct the CREATE TABLE statement by properly specifying a
  13763.           valid database name immediately after the IN DATABASE keywords.
  13764.  
  13765. 09808 PRS MTS Tabellenbereichsname fehlt
  13766.  
  13767.       Reason: Attempting a CREATE TABLE statement and the IN clause is being
  13768.           used but the tablespace name is missing.
  13769.  
  13770.       Remedy: Correct the CREATE TABLE statement by properly specifying a
  13771.           valid tablespace name immediately after the keyword IN.
  13772.  
  13773. 09809 PRS FUU FOR UPDATE OF ist mit UNION nicht erlaubt
  13774.  
  13775.       Reason: The SELECT statement contains a FOR UPDATE OF clause within a
  13776.           UNION.  A UNION cannot be specified for a SELECT statement that
  13777.           is to be used for update.
  13778.  
  13779.       Remedy: Correct the SQL statement.  A SELECT statement that is to be
  13780.           used for update cannot be defined with a UNION.
  13781.  
  13782. 09810 PRS FUO FOR UPDATE OF ist mir ORDER BY nicht erlaubt
  13783.  
  13784.       Reason: The SELECT statement contains both a FOR UPDATE OF clause and an
  13785.           ORDER BY clause.    An ORDER BY clause cannot be specified for a
  13786.           SELECT statement that is to be used for update.
  13787.  
  13788.       Remedy: Correct the SQL SELECT statement.  The implied function is not
  13789.           supported by DB2 or SQLBase.  A SELECT statement that is to be
  13790.           used for update cannot be defined to fetch the rows of the
  13791.           object table in a specific order.
  13792.  
  13793. 09811 PRS FUP Ungⁿltige FOR UPDATE OF-Klausel
  13794.  
  13795.       Reason: Attempting a SELECT statement with possibly the FOR UPDATE OF
  13796.           clause but the keywords UPDATE or OF are either missing or
  13797.           misspelled.
  13798.  
  13799.       Remedy: Correct the SELECT statement by properly specifying the FOR
  13800.           UPDATE OF clause.
  13801.  
  13802. 09812 PRS SFU SELECT FOR UPDATE mu▀ auf eine einzelne Tabelle verweisen
  13803.  
  13804.       Reason: The SELECT statement contains a FOR UPDATE OF clause and
  13805.           references more than one table.  Multiple tables cannot be
  13806.           specified for a SELECT statement that is to be used for update.
  13807.  
  13808.       Remedy: Correct the SQL SELECT statement.  A SELECT statement that is to
  13809.           be used for update cannot be defined to fetch rows from multiple
  13810.           tables.
  13811.  
  13812. 09813 PRS UNA UNION ALL wird fⁿr alle SELECT-Anweisungen ben÷tigt
  13813.  
  13814.       Reason: UNION ALL indicates that all duplicate rows will not be
  13815.           eliminated.  If UNION ALL is used on one SELECT statement it
  13816.           must be repeated for every SELECT statement in the entire
  13817.           statement.
  13818.  
  13819.       Remedy: Correct the SELECT statement by properly specifying UNION ALL
  13820.           for all select statements.
  13821.  
  13822. 09814 PRS RCT Der Name der Ergebnisspalte kann nur mit der obersten Select-Anweisung bestimmt werden
  13823.  
  13824.       Reason: The result column name can only be specified with the top SELECT
  13825.           statment.
  13826.  
  13827.       Remedy: Correct the SQL SELECT statement.
  13828.  
  13829. 09815 PRS RCI Name der Ergebnisspalte mu▀ ein Bezeichner sein
  13830.  
  13831.       Reason: The result column name must be an identifier.
  13832.  
  13833.       Remedy: Correct the SQL SELECT statement.
  13834.  
  13835. 09816 PRS ETC Ausdruck ist zu gro▀
  13836.  
  13837.       Reason: A specified expression is too large.
  13838.  
  13839.       Remedy: Modify the SQL statement.
  13840.  
  13841. 09817 PRS MKY KEY-Schlⁿsselwort fehlt
  13842.  
  13843.       Reason: Attempting to use either the PRIMARY KEY or FOREIGN KEY clauses
  13844.           and the keyword KEY is either missing or misspelled.
  13845.  
  13846.       Remedy: Correct the PRIMARY KEY or FOREIGN KEY clauses by properly
  13847.           specifying the keyword KEY.
  13848.  
  13849. 09818 PRS IPC Ungⁿltiger PrimΣrschlⁿssel-Spaltenname
  13850.  
  13851.       Reason: The primary key column name is an invalid identifier.
  13852.  
  13853.       Remedy: Correct the SQL statement by properly specifying a valid primary
  13854.           key column name identifier.
  13855.  
  13856. 09819 PRS CPK Spalte wurde bereits fⁿr PrimΣrschlⁿsse÷ bestimmt
  13857.  
  13858.       Reason: The specified column is already defined for a primary key.
  13859.  
  13860.       Remedy: Correct the SQL statement by properly specifying each column
  13861.           of a primary key only once.
  13862.  
  13863. 09820 PRS CNN PrimΣrschlⁿsselspalte mu▀ NOT NULL oder NOT NULL WITH DEFAULT sein
  13864.  
  13865.       Reason: A primary key column has not been defined as NOT NULL or NOT
  13866.           NULL WITH DEFAULT.  Each column in the primary key must be
  13867.           defined as either NOT NULL or NOT NULL WITH DEFAULT.
  13868.  
  13869.       Remedy: Define all columns of the primary as either NOT NULL or NOT NULL
  13870.           WITH DEFAULT.
  13871.  
  13872. 09821 PRS PCN Die PrimΣrschlⁿsselspalte wurde nicht festgelegt
  13873.  
  13874.       Reason: A primary key column is not defined or misspelled.
  13875.  
  13876.       Remedy: Correct the primary key column specification my properly stating
  13877.           valid columns.
  13878.  
  13879. 09822 PRS IFK Ungⁿltiger Fremdschlⁿsselname
  13880.  
  13881.       Reason: An invalid foreign key name has been specified.
  13882.  
  13883.       Remedy: Correct the SQL statement by properly specifying a valid foreign
  13884.           key.
  13885.  
  13886. 09823 PRS IFC Ungⁿltiger Fremdschlⁿssel-Spaltenname
  13887.  
  13888.       Reason: An invalid foreign key column name has been specified.
  13889.  
  13890.       Remedy: Correct the SQL statement by properly specifying a valid foreign
  13891.           key column name.
  13892.  
  13893. 09824 PRS FKA Fremdschlⁿssel wurde bereits definiert
  13894.  
  13895.       Reason: The specified foreign key name is already defined.
  13896.  
  13897.       Remedy: Correct the SQL statement by properly specifying a unique
  13898.           foreign key name.
  13899.  
  13900. 09825 PRS CFK Es wurde bereits eine Spalte fⁿr den Fremdschlⁿssel festgelegt
  13901.  
  13902.       Reason: The specified column is already defined for a foreign key.
  13903.  
  13904.       Remedy: Correct the SQL statement by properly specifying each column
  13905.           of a foreign key only once.
  13906.  
  13907. 09826 PRS FCN Fremdschlⁿsselspalte wurde nicht festgelegt
  13908.  
  13909.       Reason: A foreign key column is not defined or misspelled.
  13910.  
  13911.       Remedy: Correct the foreign key column by properly stating valid
  13912.           columns.
  13913.  
  13914. 09827 PRS MRK REFERENCE-Schlⁿsselwort fehlt
  13915.  
  13916.       Reason: A foreign key clause has a missing or misspelled REFERENCE
  13917.           keyword.
  13918.  
  13919.       Remedy: Correct the foreign key clause by properly specifying the
  13920.           REFERENCE keyword.
  13921.  
  13922. 09828 PRS IRN Ungⁿltiger Verweistabellenname
  13923.  
  13924.       Reason: A foreign key clause has referenced an invalid table name.
  13925.  
  13926.       Remedy: Correct the foreign key clause by properly specifying a
  13927.           reference to a valid table name.
  13928.  
  13929. 09829 PRS MFR FOREIGN-Schlⁿsselwort fehlt
  13930.  
  13931.       Reason: Attempting to ALTER a table and add a foreign key but the
  13932.           keyword FOREIGN is missing or misspelled.
  13933.  
  13934.       Remedy: Correct the ALTER TABLE statement by properly specifying
  13935.           the FOREIGN keyword.
  13936.  
  13937. 09830 PRS ACN Wenigstens eine Spalte des Fremdschlⁿssel mu▀ NULL-Werte zulassen
  13938.  
  13939.       Reason: A FOREIGN KEY definition with the SET NULL option has not
  13940.           specified at least one column in the foreign key where NULL
  13941.           values are allowed.
  13942.  
  13943.       Remedy: The ON DELETE SET NULL foreign key delete rule states that when
  13944.           a parent row is deleted, the foreign key values in all of its
  13945.           dependent rows should automatically be set to NULL.  Specify at
  13946.           least one column in the foreign key that allows NULL values for
  13947.           the ON DELETE SET NULL foreign key delete rule to be specified.
  13948.           Or, change the foreign key delete rule.
  13949.  
  13950. 09831 PRS SRC Auf sich selbst verweisende Fremdschlⁿssel ben÷tigen eine CASCADE-L÷schregel
  13951.  
  13952.       Reason: A self-referencing foreign key must be specified with the
  13953.           CASCADE delete rule.
  13954.  
  13955.       Remedy: Change the foreign key delete rule in the FOREIGN KEY clause.
  13956.  
  13957. 09832 PRS FDN Der Datentyp der Fremschlⁿsselspalte stimmt mit der PrimΣrschlⁿsselspalte nicht ⁿberein
  13958.  
  13959.       Reason: Each column definition of a foreign key does not match each
  13960.           column definition of the corresponding column in the primary key
  13961.           of the parent table.
  13962.  
  13963.       Remedy: Correct the definition of the foreign key or primary so that the
  13964.           each colum definition of the foreign key matches each column
  13965.           definition of the corresponding column in the primary key of the
  13966.           parent table.
  13967.  
  13968. 09833 PRS FNC Die Anzahl der Fremschlⁿsselspalten stimmt mit dem PrimΣrschlⁿssel nicht ⁿberein
  13969.  
  13970.       Reason: The number of columns of a foreign key does not match the number
  13971.           of columns in the primary key of the parent table.
  13972.  
  13973.       Remedy: Correct the definition of the foreign key or primary so that the
  13974.           number of columns in the foriegn key is equal to the number
  13975.           columns in the primary key of the parent table and the data
  13976.           types of each corresponding column match.
  13977.  
  13978. 09834 PRS SDN Bestimmungspfade mⁿssen die selben L÷schregeln haben und dⁿrfen nicht SET NULL sein
  13979.  
  13980.       Reason: The delete rules cannot be different or cannot be SET NULL.
  13981.           This error is used to report that the delete rules specified in
  13982.           two FOREIGN KEY clauses of the CREATE TABLE statement are
  13983.           invalid because the table would be delete-connected to the same
  13984.           table through multiple paths involving relationships with
  13985.           different delete rules or with delete rules of SET NULL.
  13986.  
  13987.       Remedy: Change the delete rule.
  13988.  
  13989. 09835 PRS IDR Ungⁿltige L÷schregel
  13990.  
  13991.       Reason: An invalid, missing, or misspelled delete rule has been
  13992.           specified in a foreign key clause.
  13993.  
  13994.       Remedy: Correct the foreign key clause by properly specifying a valid
  13995.           delete rule of RESTRICT, CASCADE, or SET NULL.
  13996.  
  13997. 09836 PRS TKF Zuviele verkettete Schlⁿsselfelder
  13998.  
  13999.       Reason: Attempting a CREATE INDEX, or definition of a PRIMARY or FOREIGN
  14000.           key and the number of key fields exceeds or matches the maximum
  14001.           allowed of 16 columns.
  14002.  
  14003.       Remedy: Modify key so that the number of columns to be less than 16.
  14004.  
  14005. 09837 PRS MDL DELETE-Schlⁿsselwort fehlt
  14006.  
  14007.       Reason: Attempting to define a foreign key with the ON DELETE clause but
  14008.           the keyword DELETE is either missing or misspelled.
  14009.  
  14010.       Remedy: Correct the foreign key definition ON DELETE clause by properly
  14011.           specifying the DELETE keyword.
  14012.  
  14013. 09838 PRS PND ▄bergeordnete Tabelle wurde noch nicht definiert
  14014.  
  14015.       Reason: Defining a foreign key and the specified parent table does not
  14016.           exist.
  14017.  
  14018.       Remedy: Create the parent table before defining the foreign key.
  14019.  
  14020. 09839 PRS PTI ▄bergeordnete Tabelle ist noch nicht fertig
  14021.  
  14022.       Reason: Defining a foreign key and specified parent table is still in an
  14023.           incomplete state.  A parent table is considered incomplete until
  14024.           you generate its unique index.
  14025.  
  14026.       Remedy: Create the parent table's unique index and before attempting to
  14027.           create any foreign keys.
  14028.  
  14029. 09840 PRS PKA PrimΣrschlⁿssel wurden bereits bestimmt
  14030.  
  14031.       Reason: Attempting to define a second primary key for a table.
  14032.  
  14033.       Remedy: None.  A table can only have one primary key.
  14034.  
  14035. 09841 PRS PKN PrimΣrschlⁿssel wurden in ⁿbergeordneter Tabelle nicht definiert
  14036.  
  14037.       Reason: Attempting to define a foreign key and the primary key of the
  14038.           parent table is not defined.
  14039.  
  14040.       Remedy: Define the primary key for the parent table before attempting to
  14041.           create a foreign key.
  14042.  
  14043. 09842 PRS EMP Maximale LΣnge fⁿr PrimΣrschlⁿssel wurde ⁿberschritten
  14044.  
  14045.       Reason: The specified primary key exceed the maximum length (254)
  14046.           allowed for a primary key.
  14047.  
  14048.       Remedy: Modify the primary key so that it does not exceed the maximum
  14049.           allowable length of 254.
  14050.  
  14051. 09843 PRS ATS Verwenden Sie ALTER TABLE, um einen auf sich selbst verweisenden Fremdschlⁿssel zu erzeugen
  14052.  
  14053.       Reason: A self-referencing foreign key can only be created with the
  14054.           ALTER TABLE statement.
  14055.  
  14056.       Remedy: Use the ALTER TABLE statement to create a self-referencing
  14057.           foreign key.
  14058.  
  14059. 09844 PRS TDS Das Hinzufⁿgen eines Fremdschlⁿssels hat das L÷schen der mit sich selbst verbundenen Tabelle zur Folge
  14060.  
  14061.       Reason: Any table that is involved in a delete operation is
  14062.           delete-connected.  If a referential cycle involves more than one
  14063.           table, any table in the cycle must not be delete-connected to
  14064.           itself.  This restriction guarantees that the CASCADE rule will
  14065.           not cause widespread deletion of data.
  14066.  
  14067.       Remedy: None.  A foreign key cannot be specified that causes a table to
  14068.           delete-connected to itself.
  14069.  
  14070. 09845 PRS SFD Dieselbe Spaltenliste mit verschiedenen Fremdschlⁿsseln kann nicht zur gleichen ⁿbergeordneten Tabelle geh÷ren
  14071.  
  14072.       Reason: The foreign key is not a unique foreign key reference.  The
  14073.           specified foreign key has the same columns as an existing
  14074.           foreign key for the same table.
  14075.  
  14076.       Remedy: Modify the foreign key table.  If two foreign keys have the same
  14077.           columns, they must reference different tables.
  14078.  
  14079. 09846 PRS FRS Foreign key cannot reference system table
  14080.  
  14081.       Reason: Attempting to define a foreign key that references a system
  14082.           catalog table.
  14083.  
  14084.       Remedy: None.  Foreign keys cannot reference a system catalog table.
  14085.  
  14086. 09847 PRS ICR Ungⁿltiger Cursorname
  14087.  
  14088.       Reason: Attempting a SQL INSERT statement with the ADJUSTING clause
  14089.           and the specified cursor name is invalid.
  14090.  
  14091.       Remedy: Correct the SQL INSERT statement by providing a valid cursor
  14092.           name in the ADJUSTING clause of a cursor that has been properly
  14093.           named or opened.
  14094.  
  14095. 09848 PRS OOL Anzahl der Operanden ⁿberschreitet Systemgrenzen
  14096.  
  14097.       Reason: Maximum number of operands in a function exceeds the SQLBase
  14098.           system limit of 256.
  14099.  
  14100.       Remedy: Modify the SQL statement so that the SQLBase system limit of 256
  14101.           operands is not exceeded.
  14102.  
  14103. 09849 PRS ISV Ungⁿltiger Serverbefehl
  14104.  
  14105.       Reason: Most likely attempting an INSTALL DATABASE or DEINSTALL DATABASE
  14106.           command and the keyword DATABASE is either missing or
  14107.           misspelled.
  14108.  
  14109.       Remedy: Correct the INSTALL or DEINSTALL command by properly specifying
  14110.           a valid DATABASE keyword immediately after the INSTALL or
  14111.           DEINSTALL keyword.
  14112.  
  14113. 09850 PRS IDN Ungⁿltiger Datenbankname
  14114.  
  14115.       Reason: Attempting an ALTER DATABASE, CREATE DATABASE, INSTALL DATABASE,
  14116.           or DEINSTALL DATABASE and the specified database name is
  14117.           invalid.
  14118.  
  14119.       Remedy: Correct the SQL statement by specifying a valid database name.
  14120.  
  14121. 09851 PRS IAR Ungⁿltiger dbarea-Name
  14122.  
  14123.       Reason: Attempting an ALTER DBAREA, ALTER STOGROUP, CREATE DBAREA,
  14124.           CREATE STOGROUP, or DELETE DBAREA and the specified dbarea name
  14125.           is invalid.
  14126.  
  14127.       Remedy: Correct the SQL statement by specifying a valid dbarea name.
  14128.  
  14129. 09852 PRS IAF Ungⁿltiger dbarea-Dateiname
  14130.  
  14131.       Reason: Attempting an ALTER STOGROUP, CREATE DBAREA, or CREATE STOGROUP
  14132.           and the specified dbarea file name is not valid.
  14133.  
  14134.       Remedy: Correct the SQL statement by specifying a valid file name.
  14135.  
  14136. 09853 PRS MZK SIZE-Schlⁿsselwort fehlt
  14137.  
  14138.       Reason: Attempting an ALTER DBAREA or CREATE DBAREA and the expected
  14139.           SIZE keyword is either missing or misspelled.
  14140.  
  14141.       Remedy: Correct the SQL statement by properly specifying the SIZE
  14142.           keyword.
  14143.  
  14144. 09854 PRS ISG Ungⁿltiger stogroup-Name
  14145.  
  14146.       Reason: Attempting an ATLER DATABASE, ALTER STOGROUP, CREATE DATABASE,
  14147.           CREATE STOGROUP, DELETE STOGROUP, or SET DEFAULT STOGROUP and
  14148.           the storage group name is invalid.
  14149.  
  14150.       Remedy: Correct the SQL statement by properly specifying a valid storage
  14151.           group name.
  14152.  
  14153. 09855 PRS USK USING-Schlⁿsselwort fehlt
  14154.  
  14155.       Reason: Attempting a CREATE STOGROUP statement and the mandatory USING
  14156.           keyword is either missing or misspelled.
  14157.  
  14158.       Remedy: Correct the CREATE STOGROUP statement by properly specifying the
  14159.           USING keyword.  The correct syntax
  14160.           is: CREATE STOGROUP stogroup-name USING dbarea1, dbarea2, ...
  14161.  
  14162. 09856 PRS DFK DEFAULT-Schlⁿsselwort fehlt
  14163.  
  14164.       Reason: Attempting a SET DEFAULT STOGROUP statement and the mandatory
  14165.           keyword DEFAULT is either missing or misspelled.
  14166.  
  14167.       Remedy: Correct the SET DEFAULT STOGROUP statement by properly
  14168.           specifying the mandatory keyword DEFAULT.  The correct syntax
  14169.           is: SET DEFAULT STOGROUP [stogroup-name]
  14170.           where the stogroup-name is optional.
  14171.  
  14172. 09857 PRS SGK STOGROUP-Schlⁿsselwort fehlt
  14173.  
  14174.       Reason: Attempting a SET DEFAULT STOGROUP statement and the mandatory
  14175.           keyword STOGROUP is either missing or misspelled.
  14176.  
  14177.       Remedy: Correct the SET DEFAULT STOGROUP statement by properly
  14178.           specifying the mandatory keyword STOGROUP.  The correct syntax
  14179.           is: SET DEFAULT STOGROUP [stogroup-name]
  14180.           where the stogroup-name is optional.
  14181.  
  14182. 09858 PRS ASO Ungⁿltige ALTER STOGROUP-Option
  14183.  
  14184.       Reason: Attempting a ALTER STOGROUP statement and the keyword ADD
  14185.           or DROP has not been found.
  14186.  
  14187.       Remedy: Correct the ALTER STOGROUP statement by properly specifying
  14188.           either ADD dbarea or DROP dbarea.  The correct syntax
  14189.           is: ALTER STOGROUP stogroup-name ADD dbarea
  14190.           or: ALTER STOGROUP stogroup-name DROP dbarea
  14191.  
  14192. 09859 PRS ADO Ungⁿltige ALTER DATABASE-Option
  14193.  
  14194.       Reason: Attempting a ALTER DATABASE statement and the keyword STOGROUP
  14195.           or LOG has not been found.
  14196.  
  14197.       Remedy: Correct the ALTER DATABASE statement by properly specifying
  14198.           either STOGROUP stogroup-name or LOG stogroup-name.  The correct
  14199.           syntax is: ALTER DATABASE database-name STOGROUP stogroup-name
  14200.           or:     ALTER DATABASE database-name LOG stogroup-name
  14201.  
  14202. 09860 PRS IDE Ungⁿltiger DELETE-Befehl
  14203.  
  14204.       Reason: Attempting a DELETE and the delete object keyword is invalid.
  14205.  
  14206.       Remedy: Correct the DELETE statement by properly specifying a valid
  14207.           delete object keyword to be deleted.
  14208.  
  14209. 09861 PRS ABO System beenden von Verlassen-Befehl
  14210.  
  14211.       Reason: An ABORT command has forced a system exit.
  14212.  
  14213.       Remedy: None.  Informational only.
  14214.  
  14215. 09862 PRS NDQ DBAREA Dateiname darf nicht mit doppelten Anfⁿhrungszeichen bestimmt werden
  14216.  
  14217.       Reason: The DBAREA file name must be specified in double quotes.
  14218.  
  14219.       Remedy: Correct the SQL statement by properly specifying the DBAREA
  14220.           file name in double quotes.
  14221.  
  14222. 09863 PRS ASL DBAREA-Gr÷▀e zu gro▀
  14223.  
  14224.       Reason: Attempting a CREATE DBAREA or ALTER DBAREA and the specified
  14225.           size in megabytes that exceeds the maximum allowable size of
  14226.           4096 megabytes.
  14227.  
  14228.       Remedy: Correct the CREATE DBAREA or ALTER DBAREA statement to properly
  14229.           specify a valid size in megabytes not greater than 4096.
  14230.  
  14231. 09864 PRS UMI Benutzerfehlermeldungsnummer mu▀ gr÷▀er als 0 und kleiner als 32 767 sein
  14232.  
  14233.       Reason: Attempting an ALTER TABLE statement to add or modify a user
  14234.           defined error and the specified user error number is not a valid
  14235.           positive integer value greater than 0 and less than 32,767.
  14236.  
  14237.       Remedy: Correct the ALTER TABLE statement by properly specifying a valid
  14238.           positive integer value when adding or modifying a user defined
  14239.           error greater than 0 and less than 32,767.
  14240.  
  14241. 09865 PRS IUC Ungⁿltige Benutzerfehlermeldungsklasse
  14242.  
  14243.       Reason: Attempting an ALTER TABLE statement to add, drop, or modify a
  14244.           user defined error and the specified user error class is not a
  14245.           valid quoted string indicating that the error class is either
  14246.           'DELETE_PARENT', 'UPDATE_PARENT', 'INSERT_DEPENDENT', or
  14247.           'UPDATE_DEPENDENT'.
  14248.  
  14249.       Remedy: Correct the ALTER TABLE statement by properly specifying a valid
  14250.           quoted string indicating a user define error class of either
  14251.           'DELETE_PARENT', 'UPDATE_PARENT', 'INSERT_DEPENDENT', or
  14252.           'UPDATE_DEPENDENT'.
  14253.  
  14254. 09866 PRS MFN Fremdschlⁿsselname fehlt
  14255.  
  14256.       Reason: Attempting an ALTER TABLE statement to add, drop, or modify a
  14257.           user defined error and the foreign key name in the FOREIGN KEY
  14258.           clause is missing or misspelled.
  14259.  
  14260.       Remedy: Correct the ALTER TABLE statement by properly specifying a valid
  14261.           foreign key name in the FOREIGN KEY clause.
  14262.  
  14263. 09867 PRS MPF FOREIGN oder PRIMARY-Schlⁿsselwort fehlt 
  14264.  
  14265.       Reason: Attempting an ALTER TABLE statement to add, drop, or modify a
  14266.           user defined error and the keyword PRIMARY or FOREIGN is missing
  14267.           or misspelled in the PRIMARY KEY or FOREIGN KEY clause.
  14268.  
  14269.       Remedy: Correct the ALTER TABLE statement by properly specifying the
  14270.           keyword PRIMARY or FOREIGN in either the PRIMARY KEY or FOREIGN
  14271.           key clauses.
  14272.  
  14273. 09868 PRS EFN Der Fremdschlⁿsselname darf nicht lΣnger als 8 Zeichen sein
  14274.  
  14275.       Reason: Attempting to use a foreign key with a name greater than 8
  14276.           characters.
  14277.  
  14278.       Remedy: Correct the SQL statement by properly specifying a valid foreign
  14279.           key name that does not exceed 8 characters.
  14280.  
  14281. 09869 PRS COU Die Prⁿfoption ist mit UNION nicht erlaubt
  14282.  
  14283.       Reason: This error is currently undocumented.
  14284.  
  14285.       Remedy: Contact your local Gupta Technologies certified technical
  14286.           support center for assistance.
  14287.  
  14288. 09870 PRS VCR Es werden Ansichtspaltennamen mit UNION ben÷tigt
  14289.  
  14290.       Reason: This error is currently undocumented.
  14291.  
  14292.       Remedy: Contact your local Gupta Technologies certified technical
  14293.           support center for assistance.
  14294.  
  14295. 09871 PRS CNS Befehl wird nicht mehr unterstⁿtzt
  14296.  
  14297.       Reason: The specified command is no longer supported.
  14298.  
  14299.       Remedy: Use other command.
  14300.  
  14301. 09872 PRS TMB Zu viele Booleans in der Abfrage (Query)
  14302.  
  14303.       Reason: Not enough memory at the database engine to perform the
  14304.           query parsing.
  14305.  
  14306.       Remedy: Reduce the number of boolean expressions in the query,
  14307.           especially the size of any IN list.
  14308.  
  14309.  
  14310. The errors documented in this section of the Error Guide are for general MATH
  14311. library errors while attempting a financial @function like @acos, @asin,
  14312. @atan, @atan2, @cos, @exp, @ln, @log, @mod, @pi, @sin, @sqrt, or @tan
  14313. OR attempting a mathematical @function like @cterm, @fv, @pmt, @pv, @rate,
  14314. @sln, @syd, or @term.
  14315.  
  14316. 10001 MTH     MATH LIB: Arguments-DomΣnenfehler (DOMAIN)
  14317.  
  14318.       Reason: Attempting a financial @function like @acos, @asin, @atan,
  14319.           @atan2, @cos, @exp, @ln, @log, @mod, @pi, @sin, @sqrt, or @tan
  14320.           OR attempting a mathematical @function like @cterm, @fv, @pmt,
  14321.           @pv, @rate, @sln, @syd, or @term and the specified math error
  14322.           has occurred.
  14323.  
  14324.       Remedy: Correct the value or values used with this @function.
  14325.  
  14326. 10002 MTH     MATH LIB: Arguments-SingularitΣtsfehler (SING)
  14327.  
  14328.       Reason: Attempting a financial @function like @acos, @asin, @atan,
  14329.           @atan2, @cos, @exp, @ln, @log, @mod, @pi, @sin, @sqrt, or @tan
  14330.           OR attempting a mathematical @function like @cterm, @fv, @pmt,
  14331.           @pv, @rate, @sln, @syd, or @term and the specified math error
  14332.           has occurred.
  14333.  
  14334.       Remedy: Correct the value or values used with this @function.
  14335.  
  14336. 10003 MTH     MATH LIB: ▄berlauf-Bereichsfehler (OVERFLOW)
  14337.  
  14338.       Reason: Attempting a financial @function like @acos, @asin, @atan,
  14339.           @atan2, @cos, @exp, @ln, @log, @mod, @pi, @sin, @sqrt, or @tan
  14340.           OR attempting a mathematical @function like @cterm, @fv, @pmt,
  14341.           @pv, @rate, @sln, @syd, or @term and the specified math error
  14342.           has occurred.
  14343.  
  14344.       Remedy: Correct the value or values used with this @function.
  14345.  
  14346. 10004 MTH     MATH LIB: Unterlauf-Bereichsfehler (UNDERFLOW)
  14347.  
  14348.       Reason: Attempting a financial @function like @acos, @asin, @atan,
  14349.           @atan2, @cos, @exp, @ln, @log, @mod, @pi, @sin, @sqrt, or @tan
  14350.           OR attempting a mathematical @function like @cterm, @fv, @pmt,
  14351.           @pv, @rate, @sln, @syd, or @term and the specified math error
  14352.           has occurred.
  14353.  
  14354.       Remedy: Correct the value or values used with this @function.
  14355.  
  14356. 10005 MTH     MATH LIB: Totaler Genauigkeitsverlust (TLOSS)
  14357.  
  14358.       Reason: Attempting a financial @function like @acos, @asin, @atan,
  14359.           @atan2, @cos, @exp, @ln, @log, @mod, @pi, @sin, @sqrt, or @tan
  14360.           OR attempting a mathematical @function like @cterm, @fv, @pmt,
  14361.           @pv, @rate, @sln, @syd, or @term and the specified math error
  14362.           has occurred.
  14363.  
  14364.       Remedy: Correct the value or values used with this @function.
  14365.  
  14366. 10006 MTH 006 MATH LIB: Teilweiser Genauigkeitsverlust (PLOSS)
  14367.  
  14368.       Reason: Attempting a financial @function like @acos, @asin, @atan,
  14369.           @atan2, @cos, @exp, @ln, @log, @mod, @pi, @sin, @sqrt, or @tan
  14370.           OR attempting a mathematical @function like @cterm, @fv, @pmt,
  14371.           @pv, @rate, @sln, @syd, or @term and the specified math error
  14372.           has occurred.
  14373.  
  14374.       Remedy: Correct the value or values used with this @function.
  14375.  
  14376.  
  14377. The errors documented in this section of the Error Guide are for Display
  14378. Manager errors.
  14379.  
  14380. 10101 DSM IMT NUR INTERN VERWENDET: Ungⁿltiger Meldungstyp
  14381.  
  14382.       Reason: A GSA server application, such as SQLBase or a gateway, issued
  14383.           the dsmLogSQLMLI function with an incorrect parameter value for
  14384.           the type of SQL/API message.  This is error is only used
  14385.           internally by the SQLBase system.
  14386.  
  14387.       Remedy: None.  This error should not occur.  If it does, it represents a
  14388.           logic error in the GSA server code.  This error code should
  14389.           never occur in an application program.  If you get this error,
  14390.           contact your local Gupta certified technical support center.
  14391.  
  14392. 10102 DSM MNF NUR INTERN VERWENDET: Meldungstext wurde nicht gefunden
  14393.  
  14394.       Reason: The Display Manager function dsmStatIndirect (or dsmDialog) was
  14395.           unable to retrieve a message from the internal message table
  14396.           (not error.sql).    The message could not be retrieved because it
  14397.           could not be found.  This is error is only used internally by
  14398.           the SQLBase system.
  14399.  
  14400.       Remedy: None.  This error should not occur.  If it does, it represents a
  14401.           logic error in the GSA server code.  This error code should
  14402.           never occur in an application program.  If you get this error,
  14403.           contact your local Gupta certified technical support center.
  14404.  
  14405. 10103 DSM OOM Kein Speicherplatz mehr auf Datenbank-Computer (DSM OOM)
  14406.  
  14407.       Reason: Not enough memory at the database engine to perform the
  14408.           requested task.
  14409.  
  14410.       Remedy: Check available memory at the database computer.    Attempt to
  14411.           make more memory available.  To make more memory available for
  14412.           the database engine, you can reduce size of the CACHE.
  14413.  
  14414.  
  14415. The errors documented in this section of the Error Guide are for Keyboard
  14416. Manager errors.
  14417.  
  14418. 10201 KBD KOR NUR INTERN VERWENDET 
  14419.  
  14420.       Reason: A GSA server application, such as SQLBase or a gateway, issued
  14421.           the kdbSetKeyboardFunc function with an incorrect parameter
  14422.           value for the keystroke number.  This is error is only used
  14423.           internally by the SQLBase system.
  14424.  
  14425.       Remedy: None.  This error code should never occur in an application
  14426.           program.    If it does, it represents a logic error in the GSA
  14427.           server code.  It is not an error that a client application can
  14428.           produce.    If you get this error, contact your local Gupta
  14429.           Technologies certified technical support center.
  14430.  
  14431.  
  14432. The errors documented in this section of the Error Guide are for the
  14433. database message conversion interface.
  14434.  
  14435. 10301 MCI IES NUR INTERN VERWENDET: Ungⁿltige Exportgr÷▀e
  14436.  
  14437.       Reason: This is error is only used internally by the SQLBase system.
  14438.  
  14439.       Remedy: None.  This error code should never occur.  If you get this
  14440.           error, contact your local Gupta Technologies certified
  14441.           technical support center.
  14442.  
  14443. 10302 MCI IIS NUR INTERN VERWENDET: Ungⁿltige Importgr÷▀e
  14444.  
  14445.       Reason: This is error is only used internally by the SQLBase system.
  14446.  
  14447.       Remedy: None.  This error code should never occur.  If you get this
  14448.           error, contact your local Gupta Technologies certified
  14449.           technical support center.
  14450.  
  14451. 10303 MCI IAT Ungⁿltiger Architekturtyp
  14452.  
  14453.       Reason: The database server does not recognize the hardware architecture
  14454.           type of the client requesting a connection - this could happen
  14455.           because Gupta Technologies is supporting a new architecture type
  14456.           and the client workstation with this new architecture connects
  14457.           to a database server that has not been updated.
  14458.  
  14459.       Remedy: Obtain and install an updated database server that supports the
  14460.           new architecture type from Gupta Technolgies.
  14461.  
  14462.  
  14463. The errors documented in this section of the Error Guide are for general SQL
  14464. type errors.
  14465.  
  14466. 10401 SQL NLD Keine lokalen Datenbanken
  14467.  
  14468.       Reason: Attempting to get a listing of available database on the local
  14469.           client workstation and no local databases exist.
  14470.  
  14471.       Remedy: None.  Informational only.  No local databases exist.
  14472.  
  14473. 10402 SQL INM Ungⁿltiger Cursorname
  14474.  
  14475.       Reason: Attempting to name a cursor and the specified name is missing
  14476.           or invalid.
  14477.  
  14478.       Remedy: Correct the command by properly specifying a valid cursor name.
  14479.  
  14480. 10403 SQL CAO Kein Speicher mehr beim Client vorhanden (SQL CAO)
  14481.  
  14482.       Reason: The application has run out of memory at the client workstation.
  14483.  
  14484.       Remedy: Check available memory at the client workstation.  Attempt to
  14485.           make more memory available.
  14486.  
  14487. 10404 SQL MSE Erfolgreicher Select Execute-Anweisung mu▀ Describe folgen
  14488.  
  14489.       Reason: This error is currently undocumented.
  14490.  
  14491.       Remedy: Contact your local Gupta Technologies certified technical
  14492.           support center for assistance.
  14493.  
  14494. 10405 SQL NDE Fⁿr diesen cursor ist keine Describe-Information verfⁿgbar
  14495.  
  14496.       Reason: This error is currently undocumented.
  14497.  
  14498.       Remedy: Contact your local Gupta Technologies certified technical
  14499.           support center for assistance.
  14500.  
  14501. 10407 SQL BCS Verketteter Befehl kann mit SELECT im Puffer-Ausfⁿhrmodus nicht ausgefⁿhrt werden
  14502.  
  14503.       Reason: Chained commands which are executed in bulk execute  mode  may
  14504.           not include SELECT commands.
  14505.  
  14506.       Remedy: Remove the SELECT command from chained command  or  turn    bulk
  14507.           execute mode off.
  14508.  
  14509. 10408 SQL FCH Nach hinten holen ist mit verketteten Befehlen nicht erlaubt
  14510.  
  14511.       Reason: Fetch backward with a chained command is not allowed.
  14512.  
  14513.       Remedy: Turn fetch backward off or don't execute the  chained  command
  14514.           while in bulk execute command.
  14515.  
  14516. 10409 SQL IBF Ungⁿltiges Backup File
  14517.  
  14518.       Reason: Could not read data from a backup file.
  14519.  
  14520.       Remedy: Check to make sure that the files being restored are
  14521.           were created by doing an online backup.
  14522.  
  14523. 10410 SQL NEU Kein kⁿrzlich ausgefⁿhrter UPDATE
  14524.  
  14525.       Reason: An attempt was made to retrieve the  ROWID  with    the  SQLPRID
  14526.           sqlget() parameter on a  cursor  which  does  not  contain  an
  14527.           executed UPDATE command.
  14528.  
  14529.       Remedy: Successfully execute an UPDATE command.
  14530.  
  14531.  
  14532. The errors documented in this section of the Error Guide are for general
  14533. numeric type errors.
  14534.  
  14535. 10501 NUM BNP Zeigernummer ist fehlerhaft
  14536.  
  14537.       Reason: Attempting to use the API function sqlxad, sqlxda, sqlxdp,
  14538.           sqlxdv sqlxml, sqlxnp, or sqlxsb and a specified pointer to a
  14539.           number or the specified length of the number is invalid.    This
  14540.           is an application programming problem.
  14541.  
  14542.       Remedy: If you are using a extended math API function, correct the API
  14543.           function call.  If you are using an application that has
  14544.           generated this error, contact the supplier of the application
  14545.           program.    If you have verified that you are not directly or
  14546.           indirectly calling a extended math API function then contact
  14547.           your local Gupta Technologies certified technical support
  14548.           center.
  14549.  
  14550. 10502 NUM NLS Die Zahl ist zu klein (gleich oder kleiner Null)
  14551.  
  14552.       Reason: Attempting to use the API function sqlxad, sqlxda, sqlxdp,
  14553.           sqlxdv sqlxml, sqlxnp, or sqlxsb and a specified pointer to a
  14554.           number or the specified length of the number is invalid.    This
  14555.           is an application programming problem.
  14556.  
  14557.       Remedy: If you are using a extended math API function, correct the API
  14558.           function call.  If you are using an application that has
  14559.           generated this error, contact the supplier of the application
  14560.           program.    If you have verified that you are not directly or
  14561.           indirectly calling a extended math API function then contact
  14562.           your local Gupta Technologies certified technical support
  14563.           center.
  14564.  
  14565. 10503 NUM NLL Zahl ist zu gro▀ (gr÷▀er als 12)
  14566.  
  14567.       Reason: Attempting to use the API function sqlxad, sqlxda, sqlxdp,
  14568.           sqlxdv sqlxml, sqlxnp, or sqlxsb and a specified pointer to a
  14569.           number or the specified length of the number is invalid.    This
  14570.           is an application programming problem.
  14571.  
  14572.       Remedy: If you are using a extended math API function, correct the API
  14573.           function call.  If you are using an application that has
  14574.           generated this error, contact the supplier of the application
  14575.           program.    If you have verified that you are not directly or
  14576.           indirectly calling a extended math API function then contact
  14577.           your local Gupta Technologies certified technical support
  14578.           center.
  14579.  
  14580. 10504 NUM ETS Exponent ist zu klein
  14581.  
  14582.       Reason: Attempting to use the API function sqlxad, sqlxda, sqlxdp,
  14583.           sqlxdv sqlxml, sqlxnp, or sqlxsb and a specified pointer to a
  14584.           number or the specified length of the number is invalid.    This
  14585.           is an application programming problem.
  14586.  
  14587.       Remedy: If you are using a extended math API function, correct the API
  14588.           function call.  If you are using an application that has
  14589.           generated this error, contact the supplier of the application
  14590.           program.    If you have verified that you are not directly or
  14591.           indirectly calling a extended math API function then contact
  14592.           your local Gupta Technologies certified technical support
  14593.           center.
  14594.  
  14595. 10505 NUM ETL Exponent ist zu gro▀
  14596.  
  14597.       Reason: Attempting to use the API function sqlxad, sqlxda, sqlxdp,
  14598.           sqlxdv sqlxml, sqlxnp, or sqlxsb and a specified pointer to a
  14599.           number or the specified length of the number is invalid.    This
  14600.           is an application programming problem.
  14601.  
  14602.       Remedy: If you are using a extended math API function, correct the API
  14603.           function call.  If you are using an application that has
  14604.           generated this error, contact the supplier of the application
  14605.           program.    If you have verified that you are not directly or
  14606.           indirectly calling a extended math API function then contact
  14607.           your local Gupta Technologies certified technical support
  14608.           center.
  14609.  
  14610. 10506 NUM MNM Negativzeichen fehlt
  14611.  
  14612.       Reason: Attempting to use the API function sqlxad, sqlxda, sqlxdp,
  14613.           sqlxdv sqlxml, sqlxnp, or sqlxsb and a specified pointer to a
  14614.           number or the specified length of the number is invalid.    This
  14615.           is an application programming problem.
  14616.  
  14617.       Remedy: If you are using a extended math API function, correct the API
  14618.           function call.  If you are using an application that has
  14619.           generated this error, contact the supplier of the application
  14620.           program.    If you have verified that you are not directly or
  14621.           indirectly calling a extended math API function then contact
  14622.           your local Gupta Technologies certified technical support
  14623.           center.
  14624.  
  14625. 10507 NUM BNM Unbrauchbares Negativzeichen
  14626.  
  14627.       Reason: Attempting to use the API function sqlxad, sqlxda, sqlxdp,
  14628.           sqlxdv sqlxml, sqlxnp, or sqlxsb and a specified pointer to a
  14629.           number or the specified length of the number is invalid.    This
  14630.           is an application programming problem.
  14631.  
  14632.       Remedy: If you are using a extended math API function, correct the API
  14633.           function call.  If you are using an application that has
  14634.           generated this error, contact the supplier of the application
  14635.           program.    If you have verified that you are not directly or
  14636.           indirectly calling a extended math API function then contact
  14637.           your local Gupta Technologies certified technical support
  14638.           center.
  14639.  
  14640. 10508 NUM DTS Zu kleine Ziffern
  14641.  
  14642.       Reason: Attempting to use the API function sqlxad, sqlxda, sqlxdp,
  14643.           sqlxdv sqlxml, sqlxnp, or sqlxsb and a specified pointer to a
  14644.           number or the specified length of the number is invalid.    This
  14645.           is an application programming problem.
  14646.  
  14647.       Remedy: If you are using a extended math API function, correct the API
  14648.           function call.  If you are using an application that has
  14649.           generated this error, contact the supplier of the application
  14650.           program.    If you have verified that you are not directly or
  14651.           indirectly calling a extended math API function then contact
  14652.           your local Gupta Technologies certified technical support
  14653.           center.
  14654.  
  14655. 10509 NUM DTL Ziffer ist zu gro▀
  14656.  
  14657.       Reason: Attempting to use the API function sqlxad, sqlxda, sqlxdp,
  14658.           sqlxdv sqlxml, sqlxnp, or sqlxsb and a specified pointer to a
  14659.           number or the specified length of the number is invalid.    This
  14660.           is an application programming problem.
  14661.  
  14662.       Remedy: If you are using a extended math API function, correct the API
  14663.           function call.  If you are using an application that has
  14664.           generated this error, contact the supplier of the application
  14665.           program.    If you have verified that you are not directly or
  14666.           indirectly calling a extended math API function then contact
  14667.           your local Gupta Technologies certified technical support
  14668.           center.
  14669.  
  14670.  
  14671. The errors documented in this section of the Error Guide are for errors
  14672. relating to distributed databases and in particular errors regarding the
  14673. MAIN central database.
  14674.  
  14675. 10601 MDB NSC NUR INTERN VERWENDET: Kein gespeicherter Kontext zum Wiederherstellen vorhanden
  14676.  
  14677.       Reason: This is error is only used internally by the SQLBase system.
  14678.  
  14679.       Remedy: None.  This error code should never occur.  If you get this
  14680.           error, contact your local Gupta Technologies certified
  14681.           technical support center.
  14682.  
  14683. 10602 MDB COI MAIN.INI kann nicht ge÷ffnet werden
  14684.  
  14685.       Reason: Cannot open the MAIN.INI file.
  14686.  
  14687.       Remedy: Copy MAIN.INI to user's working directory.
  14688.  
  14689. 10603 MDB CAS NUR INTERN VERWENDET: Kontext wurde bereits gespeichert
  14690.  
  14691.       Reason: This is error is only used internally by the SQLBase system.
  14692.  
  14693.       Remedy: None.  This error code should never occur.  If you get this
  14694.           error, contact your local Gupta Technologies certified
  14695.           technical support center.
  14696.  
  14697. 10604 MDB UME Benutzer darf eine Datenbank nicht MAIN nennen. Bitte bestimmen Sie einen anderen Namen
  14698.  
  14699.       Reason: Attempting to name a database by the name of MAIN.
  14700.  
  14701.       Remedy: Use a different database name other than MAIN.
  14702.  
  14703. 10605 MDB MMV SQLBase und MAIN.INI haben unterschiedliche Versionen
  14704.  
  14705.       Reason: The MAIN.INI file attempting to be used is not the proper
  14706.           version, that is, the software version number found on line
  14707.           one of MAIN.INI does not match the SQLBase version number.
  14708.  
  14709.       Remedy: Use the correct version of the MAIN.INI file for this
  14710.           particular version of SQLBase.
  14711.  
  14712.  
  14713. The errors documented in this section of the Error Guide are errors
  14714. generated by the partition file system for partitioned databases.
  14715.  
  14716. 10701 PFS NEF NICHT VERWENDET
  14717.  
  14718.       Reason: This is error code is currently not used by the SQLBase system.
  14719.  
  14720.       Remedy: None.  This error code should never occur.  If you get this
  14721.           error, contact your local Gupta Technologies certified
  14722.           technical support center.
  14723.  
  14724. 10702 PFS IFH NUR INTERN VERWENDET: Ungⁿltiger Filehandle
  14725.  
  14726.       Reason: This is error is only used internally by the SQLBase system.
  14727.  
  14728.       Remedy: None.  This error code should never occur.  If you get this
  14729.           error, contact your local Gupta Technologies certified
  14730.           technical support center.
  14731.  
  14732. 10703 PFS IEN Ungⁿltige Extensionsnummer in der Datenbank MAIN
  14733.  
  14734.       Reason: The MAIN database has been determined to be inconsistent.
  14735.  
  14736.       Remedy: Stop all partitioned database operations and run a CHECK
  14737.           DATABASE operation on the MAIN database in single user mode.  If
  14738.           an error is reported, attempt to correct the problem by either
  14739.           dropping and re-creating the offending object or restore the
  14740.           MAIN database from the most recent backup.  If the CHECK
  14741.           DATABASE operation does not report a problem, then contact your
  14742.           local Gupta Technologies certified technical support center.
  14743.  
  14744. 10704 PFS IAI NICHT VERWENDET
  14745.  
  14746.       Reason: This is error code is currently not used by the SQLBase system.
  14747.  
  14748.       Remedy: None.  This error code should never occur.  If you get this
  14749.           error, contact your local Gupta Technologies certified
  14750.           technical support center.
  14751.  
  14752. 10705 PFS IPE NUR INTERN VERWENDET: E/A wurde nach Dateiende versucht
  14753.  
  14754.       Reason: This is error is only used internally by the SQLBase system.
  14755.  
  14756.       Remedy: None.  This error code should never occur.  If you get this
  14757.           error, contact your local Gupta Technologies certified
  14758.           technical support center.
  14759.  
  14760. 10706 PFS COV Kein Speicherplatz mehr auf Datenbank-Computer (PFS COV)
  14761.  
  14762.       Reason: Not enough memory at the database engine to perform the
  14763.           requested task.
  14764.  
  14765.       Remedy: Check available memory at the database computer.    Attempt to
  14766.           make more memory available.  To make more memory available for
  14767.           the database engine, you can reduce size of the CACHE.
  14768.  
  14769. 10707 PFS COD Kein Speicherplatz mehr auf Datenbank-Computer (PFS COD)
  14770.  
  14771.       Reason: Not enough memory at the database engine to perform the
  14772.           requested task.
  14773.  
  14774.       Remedy: Check available memory at the database computer.    Attempt to
  14775.           make more memory available.  To make more memory available for
  14776.           the database engine, you can reduce size of the CACHE.
  14777.  
  14778. 10708 PFS CFV Kein Speicherplatz mehr auf Datenbank-Computer (PFS CFV)
  14779.  
  14780.       Reason: Not enough memory at the database engine to perform the
  14781.           requested task.
  14782.  
  14783.       Remedy: Check available memory at the database computer.    Attempt to
  14784.           make more memory available.  To make more memory available for
  14785.           the database engine, you can reduce size of the CACHE.
  14786.  
  14787. 10709 PFS CFD Kein Speicherplatz mehr auf Datenbank-Computer (PFS CFD)
  14788.  
  14789.       Reason: Not enough memory at the database engine to perform the
  14790.           requested task.
  14791.  
  14792.       Remedy: Check available memory at the database computer.    Attempt to
  14793.           make more memory available.  To make more memory available for
  14794.           the database engine, you can reduce size of the CACHE.
  14795.  
  14796. 10710 PFS CAV Kein Speicherplatz mehr auf Datenbank-Computer (PFS CAV)
  14797.  
  14798.       Reason: Not enough memory at the database engine to perform the
  14799.           requested task.
  14800.  
  14801.       Remedy: Check available memory at the database computer.    Attempt to
  14802.           make more memory available.  To make more memory available for
  14803.           the database engine, you can reduce size of the CACHE.
  14804.  
  14805. 10711 PFS CAD Kein Speicherplatz mehr auf Datenbank-Computer (PFS CAD)
  14806.  
  14807.       Reason: Not enough memory at the database engine to perform the
  14808.           requested task.
  14809.  
  14810.       Remedy: Check available memory at the database computer.    Attempt to
  14811.           make more memory available.  To make more memory available for
  14812.           the database engine, you can reduce size of the CACHE.
  14813.  
  14814. 10712 PFS COA Bereichsdatei kann fⁿr Datenbank MAIN nicht ge÷ffnet werden
  14815.  
  14816.       Reason: The MAIN database has been determined to be inconsistent.
  14817.  
  14818.       Remedy: Stop all partitioned database operations and run a CHECK
  14819.           DATABASE operation on the MAIN database in single user mode.  If
  14820.           an error is reported, attempt to correct the problem by either
  14821.           dropping and re-creating the offending object or restore the
  14822.           MAIN database from the most recent backup.  If the CHECK
  14823.           DATABASE operation does not report a problem, then contact your
  14824.           local Gupta Technologies certified technical support center.
  14825.  
  14826. 10713 PFS CEM Kein Speicherplatz mehr auf Datenbank-Computer
  14827.  
  14828.       Reason: Not enough memory at the database engine to perform the
  14829.           requested task.
  14830.  
  14831.       Remedy: Check available memory at the database computer.    Attempt to
  14832.           make more memory available.  To make more memory available for
  14833.           the database engine, you can reduce size of the CACHE.
  14834.  
  14835. 10714 PFS 002 NICHT VERWENDET
  14836.  
  14837.       Reason: This is error code is currently not used by the SQLBase system.
  14838.  
  14839.       Remedy: None.  This error code should never occur.  If you get this
  14840.           error, contact your local Gupta Technologies certified
  14841.           technical support center.
  14842.  
  14843. 10715 PFS CEF Partitionierte Datei kann nicht vergr÷▀ert werden
  14844.  
  14845.       Reason: There is insufficient disk space in a storage group.
  14846.  
  14847.       Remedy: Check which storage group (database or log) is running out of
  14848.           disk space.  Create a new DBAREA and add space the storage
  14849.           group.
  14850.  
  14851. 10716 PFS CEE Kein Speicherplatz mehr auf Datenbank-Computer (PFS CEE)
  14852.  
  14853.       Reason: Not enough memory at the database engine to perform the
  14854.           requested task.
  14855.  
  14856.       Remedy: Check available memory at the database computer.    Attempt to
  14857.           make more memory available.  To make more memory available for
  14858.           the database engine, you can reduce size of the CACHE.
  14859.  
  14860. 10717 PFS NPD NUR INTERN VERWENDET: Keine partitionierte Datenbank
  14861.  
  14862.       Reason: This is error is only used internally by the SQLBase system.
  14863.  
  14864.       Remedy: None.  This error code should never occur.  If you get this
  14865.           error, contact your local Gupta Technologies certified
  14866.           technical support center.
  14867.  
  14868. 10718 PFS 001 NICHT VERWENDET
  14869.  
  14870.       Reason: This is error code is currently not used by the SQLBase system.
  14871.  
  14872.       Remedy: None.  This error code should never occur.  If you get this
  14873.           error, contact your local Gupta Technologies certified
  14874.           technical support center.
  14875.  
  14876. 10719 PFS FDE Diese Datei existiert fⁿr die Datenbank MAIN nicht
  14877.  
  14878.       Reason: The MAIN database has been determined to be inconsistent.
  14879.  
  14880.       Remedy: Stop all partitioned database operations and run a CHECK
  14881.           DATABASE operation on the MAIN database in single user mode.  If
  14882.           an error is reported, attempt to correct the problem by either
  14883.           dropping and re-creating the offending object or restore the
  14884.           MAIN database from the most recent backup.  If the CHECK
  14885.           DATABASE operation does not report a problem, then contact your
  14886.           local Gupta Technologies certified technical support center.
  14887.  
  14888. 10720 PFS CAI Startgr÷▀e kann nicht zugewiesen werden
  14889.  
  14890.       Reason: There is insufficient disk space in a storage group.
  14891.  
  14892.       Remedy: Check which storage group (database or log) is running out of
  14893.           disk space.  Create a new DBAREA and add space the storage
  14894.           group.
  14895.  
  14896. 10721 PFS CDO NUR INTERN VERWENDET: Offene Datei kann nicht gel÷scht werden
  14897.  
  14898.       Reason: This is error is only used internally by the SQLBase system.
  14899.  
  14900.       Remedy: None.  This error code should never occur.  If you get this
  14901.           error, contact your local Gupta Technologies certified
  14902.           technical support center.
  14903.  
  14904. 10722 PFS CEV Kein Speicherplatz mehr auf Datenbank-Computer (PFS CEV)
  14905.  
  14906.       Reason: Not enough memory at the database engine to perform the
  14907.           requested task.
  14908.  
  14909.       Remedy: Check available memory at the database computer.    Attempt to
  14910.           make more memory available.  To make more memory available for
  14911.           the database engine, you can reduce size of the CACHE.
  14912.  
  14913. 10723 PFS COR Die Tabellen der Datenbank MAIN sind fehlerhaft
  14914.  
  14915.       Reason: The MAIN database has been determined to be inconsistent.
  14916.  
  14917.       Remedy: Stop all partitioned database operations and run a CHECK
  14918.           DATABASE operation on the MAIN database in single user mode.  If
  14919.           an error is reported, attempt to correct the problem by either
  14920.           dropping and re-creating the offending object or restore the
  14921.           MAIN database from the most recent backup.  If the CHECK
  14922.           DATABASE operation does not report a problem, then contact your
  14923.           local Gupta Technologies certified technical support center.
  14924.  
  14925.  
  14926. The errors documented in this section of the Error Guide are for errors that
  14927. occur when performing database server commands.
  14928.  
  14929. 10801 SVC CNF NICHT VERWENDET
  14930.  
  14931.       Reason: This is error code is currently not used by the SQLBase system.
  14932.  
  14933.       Remedy: None.  This error code should never occur.  If you get this
  14934.           error, contact your local Gupta Technologies certified
  14935.           technical support center.
  14936.  
  14937. 10802 SVC VNM Die Datenbank MAIN wurde nicht korrekt hochgefahren (fehlende ▄bereinstimmung bei den gestapelten Befehlsvariablen)
  14938.  
  14939.       Reason: The main database has not been set up properly.  The number of
  14940.           bind variables in a stored command do not match the number of
  14941.           bind variables.
  14942.  
  14943.       Remedy: Reinstall the main database or recover from a backup database.
  14944.  
  14945. 10803 SVC SNM Die Datenbank MAIN wurde nicht korrekt hochgefahren (Markierte Spalten stimmen mit den gestapelten Befehlen nicht ⁿberein)
  14946.  
  14947.       Reason: The main database has not been set up properly.  The number of
  14948.           columns selected does not match the number columns in the
  14949.           previously stored command.
  14950.  
  14951.       Remedy: Reinstall the main database or recovery from a backup database.
  14952.  
  14953. 10804 SVC DAN DBAREA besteht bereits oder sie wurde nicht gefunden
  14954.  
  14955.       Reason: Either attempting to CREATE a DBAREA and the DBAREA already
  14956.           exists or attempting to ALTER a DBAREA and the DBAREA was not
  14957.           found to be altered.
  14958.  
  14959.       Remedy: For a CREATE DBAREA, verify that the DBAREA area does not
  14960.           already exist and retry using a unique name.  For ALTER DBAREA,
  14961.           verify that the DBAREA exists and because you can only alter an
  14962.           existing DBAREA.
  14963.  
  14964. 10805 SVC DSG Stogroup-Name besteht bereits
  14965.  
  14966.       Reason: Attempting a CREATE STOGROUP and the specified stogroup name
  14967.           already exists.
  14968.  
  14969.       Remedy: Verify the stogroup name and retry with a unique stogroup name.
  14970.  
  14971. 10806 SVC DSA DBAREA ist bereits in Stogroup
  14972.  
  14973.       Reason: Attempting a CREATE STOGROUP or ALTER STOGROUP and the specified
  14974.           DBAREA is already part of a previously defined stogroup.
  14975.  
  14976.       Remedy: Retry using a different stogroup.
  14977.  
  14978. 10807 SVC NPD Keine partitionierte Datenbank. Der Befehl ist hier nicht erlaubt
  14979.  
  14980.       Reason: Attempting an ALTER DATABASE command and the specified database
  14981.           is not a partitioned database.
  14982.  
  14983.       Remedy: None.  The ALTER DATABASE command can only be used for
  14984.           partitioned databases.
  14985.  
  14986. 10808 SVC SCD Bestimmte DBAREA ist mit der Stogroup verbunden
  14987.  
  14988.       Reason: Attempting to drop a DBAREA and the specified DBAREA is
  14989.           associated with an establish stogroup.
  14990.  
  14991.       Remedy: Drop the associated stogroup before attempting to drop the
  14992.           DBAREA.
  14993.  
  14994. 10809 SVC ECD Die bestimmte DBAREA wird bereits verwendet
  14995.  
  14996.       Reason: Attempting to drop a DBAREA and the specified DBAREA is
  14997.           being used as an extent area.
  14998.  
  14999.       Remedy: None.  You cannot drop a DBAREA that is in use.
  15000.  
  15001. 10810 SVC DCS Die bestimmte Stogroup wurde der Datenbank bereits zugewiesen
  15002.  
  15003.       Reason: Attempting to drop a stogroup but the specified stogroup has
  15004.           been assigned to the database.
  15005.  
  15006.       Remedy: None.  You cannot drop a stogroup that has been assigned to the
  15007.           database.
  15008.  
  15009. 10811 SVC FCS Die bestimmte Stogroup ist die Standard-Stogroup
  15010.  
  15011.       Reason: Attempting to drop a stogroup but the specified stogroup is the
  15012.           default stogroup.
  15013.  
  15014.       Remedy: Modify the default stogroup before attempting to drop the
  15015.           specified stogroup.
  15016.  
  15017. 10812 SVC ANF DBAREA wurde nicht gefunden
  15018.  
  15019.       Reason: Attempting an ALTER DBAREA, ALTER STOGROUP, CREATE STOGROUP, or
  15020.           DROP DBAREA and a specified DBAREA was not found.
  15021.  
  15022.       Remedy: Correct the SQL statement by properly specifying a valid DBAREA
  15023.           name.
  15024.  
  15025. 10813 SVC DNF Datenbank wurde nicht gefunden
  15026.  
  15027.       Reason: Attempting an ALTER DATABASE and the specified database was not
  15028.           found.
  15029.  
  15030.       Remedy: Correct the ALTER DATABASE statement by properly specifying a
  15031.           valid database name.
  15032.  
  15033. 10814 SVC DAE Die Datenbank besteht bereits
  15034.  
  15035.       Reason: Attempting a CREATE DATABASE and the specified database already
  15036.           exists.
  15037.  
  15038.       Remedy: Correct the CREATE DATABASE statement by properly specifying a
  15039.           valid, nonexistent database.
  15040.  
  15041. 10815 SVC IRS Zuwenig Speicherplatz fⁿr virtuelles GerΣt (raw device)
  15042.  
  15043.       Reason: Attempting a CREATE DBAREA or ALTER DBAREA and the requested
  15044.           database area is larger than the actual amount of free raw
  15045.           device space available on the specified device.
  15046.  
  15047.       Remedy: Correct the CREATE DBAREA or ALTER DBAREA statement by properly
  15048.           specifying a database area that is not larger than the actual
  15049.           amount of free raw device space available on the specified
  15050.           device.
  15051.  
  15052. 10816 SVC IFS Zuwenig Speicherplatz fⁿr Datei
  15053.  
  15054.       Reason: Attempting a CREATE DBAREA or ALTER DBAREA and the requested
  15055.           database area is larger than the actual amount of free disk
  15056.           space available on the specified device.
  15057.  
  15058.       Remedy: Correct the CREATE DBAREA or ALTER DBAREA statement by properly
  15059.           specifying a database area that is not larger than the actual
  15060.           amount of free disk space available on the specified device.
  15061.  
  15062. 10817 SVC FAE Datei besteht bereits
  15063.  
  15064.       Reason: Attempting a CREATE DBAREA and the specified file name already
  15065.           exists.
  15066.  
  15067.       Remedy: Correct the CREATE DBAREA statement by specifying a filename
  15068.           that does not already exist.
  15069.  
  15070. 10818 SVC FCE Fehler beim Anlegen der Datei
  15071.  
  15072.       Reason: Attempting to create a file and a failure has occurred.
  15073.  
  15074.       Remedy: Determine and correct the cause of the create failure.  Run a
  15075.           check disk utility (CHKDSK) for the current operating system to
  15076.           verify the status of disk.  Verify that sufficient disk space is
  15077.           available and verify that the number of files allowed open for
  15078.           the operating system permits the additional file, that is, check
  15079.           the FILES= configuration parameter setting.
  15080.  
  15081. 10819 SVC IOE Fehler beim Schreiben der Datei
  15082.  
  15083.       Reason: Attempting to write to a file and a disk write failure has
  15084.           occurred.
  15085.  
  15086.       Remedy: Determine and correct the cause of the disk write failure.  Most
  15087.           commonly, it may be because you have run out of available disk
  15088.           space.  If sufficient disk space is available, then run a check
  15089.           disk utility (CHKDSK) for the current operating system to verify
  15090.           the status of the disk.
  15091.  
  15092. 10820 SVC CCD NUR INTERN VERWENDET: Partitionierte Datenbank kann nicht angelegt werden
  15093.  
  15094.       Reason: This is error is only used internally by the SQLBase system.
  15095.  
  15096.       Remedy: None.  This error code should never occur.  If you get this
  15097.           error, contact your local Gupta Technologies certified
  15098.           technical support center.
  15099.  
  15100. 10821 SVC SAN NICHT VERWENDET
  15101.  
  15102.       Reason: This is error code is currently not used by the SQLBase system.
  15103.  
  15104.       Remedy: None.  This error code should never occur.  If you get this
  15105.           error, contact your local Gupta Technologies certified
  15106.           technical support center.
  15107.  
  15108. 10822 SVC FNF Die mit der DBAREA verbundene Datei wurde nicht gefunden
  15109.  
  15110.       Reason: Attempting an ALTER DBAREA to increase the size of the database
  15111.           area and a file associated with the DBAREA cannot be found.
  15112.  
  15113.       Remedy: Determine and correct the cause of the open file failure.
  15114.           Verify that the specified file exists.  Verify the number of
  15115.           files allowed open for the operating system permits the
  15116.           additional file, that is, check the FILES= configuration
  15117.           parameter setting.
  15118.  
  15119. 10823 SVC MNE Datenbank MAIM existiert nicht
  15120.  
  15121.       Reason: Trying to use a server command and the command is related to a
  15122.           partitioned database while the MAIN database has not been
  15123.           created.    For example, attempting to create a database with
  15124.           stogroup(s) specified in the command.
  15125.  
  15126.       Remedy: Correct SQL statement.
  15127.  
  15128. 10824 SVC CCM Datenbank MAIN kann nicht angelegt werden
  15129.  
  15130.       Reason: Attempting to create a database file and a failure has occurred.
  15131.  
  15132.       Remedy: Determine and correct the cause of the create failure.  Run a
  15133.           check disk utility (CHKDSK) for the current operating system to
  15134.           verify the status of disk.  Verify that sufficient disk space is
  15135.           available and verify that the number of files allowed open for
  15136.           the operating system permits the additional file, that is, check
  15137.           the FILES= configuration parameter setting.
  15138.  
  15139. 10825 SVC SGN Name der Stogroup wurde nicht gefunden
  15140.  
  15141.       Reason: Attempting a CREATE DATABASE, DROP STOGROUP, or SET DEFAULT
  15142.           STOGROUP and the specified stogroup name does not exist.
  15143.  
  15144.       Remedy: Correct the SQL statement by properly specifying an existing
  15145.           stogroup name.
  15146.  
  15147. 10826 SVC DSO Daten wurden au▀erhalb des bestimmten Bereichs gespeichert
  15148.  
  15149.       Reason: Attempting an ALTER DBAREA and the size of the database area is
  15150.           being decreased by data is already stored outside of the
  15151.           specified area.
  15152.  
  15153.       Remedy: None.  The database area cannot be decreased if data already is
  15154.           stored outside of the specified area.
  15155.  
  15156. 10827 SVC ANS DBAREA ist nicht in der Stogroup
  15157.  
  15158.       Reason: Attempting an ALTER STOGROUP to drop a DBAREA but the specified
  15159.           database area is not in the specified storage group.
  15160.  
  15161.       Remedy: None.  A DBAREA cannot be dropped from a storage group is the
  15162.           database area is not associated with the storage group.
  15163.  
  15164. 10828 SVC DFE Fehler beim L÷schen der Datei
  15165.  
  15166.       Reason: Attempting a DROP DBAREA or DROP DATBASE and the file cannot be
  15167.           deleted.
  15168.  
  15169.       Remedy: Determine and correct the cause of the file delete failure.  Run
  15170.           a check disk utility (CHKDSK) for the current operating system
  15171.           to verify the status of the disk.
  15172.  
  15173. 10829 SVC IRF Fehler beim Initialisieren des Leseprozesses
  15174.  
  15175.       Reason: Attempting to read a file and a disk read failure has occurred.
  15176.  
  15177.       Remedy: Determine and correct the cause of the disk read failure.  Run a
  15178.           check disk utility (CHKDSK) for the current operating system to
  15179.           verify the status of the disk.
  15180.  
  15181. 10830 SVC IWF Fehler beim Inititialisieren des Schreibprozesses
  15182.  
  15183.       Reason: Attempting to write to a file and a disk write failure has
  15184.           occurred.
  15185.  
  15186.       Remedy: Determine and correct the cause of the disk write failure.  Most
  15187.           commonly, it may be because you have run out of available disk
  15188.           space.  If sufficient disk space is available, then run a check
  15189.           disk utility (CHKDSK) for the current operating system to verify
  15190.           the status of the disk.
  15191.  
  15192. 10831 SVC DNA Bestimmte DBAREA kann nicht zugewiesen werden (Interner Fehler)
  15193.  
  15194.       Reason: This is a Fatal Error.
  15195.  
  15196.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  15197.           If a FAIL.SQL file is available, then save it.  Attempt to
  15198.           reproduce the problem via a SQL script, scenario, or using the
  15199.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  15200.           Contact your local Gupta certified technical support center.
  15201.  
  15202. 10832 SVC DIU NICHT VERWENDET
  15203.  
  15204.       Reason: This is error code is currently not used by the SQLBase system.
  15205.  
  15206.       Remedy: None.  This error code should never occur.  If you get this
  15207.           error, contact your local Gupta Technologies certified
  15208.           technical support center.
  15209.  
  15210. 10833 SVC MZK SIZE-Schlⁿsselwort wird ben÷tigt
  15211.  
  15212.       Reason: Attempting a CREATE DBAREA and the SIZE keyword is either
  15213.           missing or misspelled.
  15214.  
  15215.       Remedy: Correct the CREATE DBAREA statement by properly specifying a
  15216.           SIZE keyword.
  15217.  
  15218. 10834 SVC NOP Datenbank MAIN ist nicht allgemein zugΣnglich
  15219.  
  15220.       Reason: Attempting a to create, delete, install, or deinstall the MAIN
  15221.           database and the MAIN database cannot be modified by the general
  15222.           public.
  15223.  
  15224.       Remedy: None.  The MAIN database is not open to the public.
  15225.  
  15226. 10835 SVC DBA NICHT VERWENDET
  15227.  
  15228.       Reason: This is error code is currently not used by the SQLBase system.
  15229.  
  15230.       Remedy: None.  This error code should never occur.  If you get this
  15231.           error, contact your local Gupta Technologies certified
  15232.           technical support center.
  15233.  
  15234. 10836 SVC USC Unbekannter Serverbefehl
  15235.  
  15236.       Reason: Attempting an unknown database server command.
  15237.  
  15238.       Remedy: Correct the SQL statement by properly specifying a valid
  15239.           database server command.
  15240.  
  15241. 10837 SVC DNE Die Datenbank existiert nicht
  15242.  
  15243.       Reason: Attempting to delete or deinstall a non-existent database.
  15244.  
  15245.       Remedy: Correct the SQL statement by properly specifying a valid,
  15246.           existing database name.
  15247.  
  15248. 10838 SVC PDE Partitionierte Datenbank ist bereits aktiv
  15249.  
  15250.       Reason: An attempt to enable partitioned databases was made  when  the
  15251.           partitioned databases were already enabled.
  15252.  
  15253.       Remedy: No remedy needed.
  15254.  
  15255. 10839 SVC PDD Partitionierte Datenbank wurde bereits deaktiviert
  15256.  
  15257.       Reason: An attempt to disable partitioned databases was made when  the
  15258.           partitioned databases were already disabled.
  15259.  
  15260.       Remedy: No remedy needed.
  15261.  
  15262. 10840 SVC PIU Partitionierte Datenbank ist in Gebrauch
  15263.  
  15264.       Reason: An attempt to disable partitioned databases was  made  when  a
  15265.           partitioned database was in use.
  15266.  
  15267.       Remedy: Disconnect from all partitioned  databases  before  trying  to
  15268.           disable partitioned databases.
  15269.  
  15270. 10841 SVC IGP Unerlaubtes Server-Einleseparameter
  15271.  
  15272.       Reason: An attempt to to use an invalid  get  parameter  on  a  server
  15273.           connect was made.
  15274.  
  15275.       Remedy: Use a correct server get parameter as defined in SQL.H
  15276.  
  15277.  
  15278. The errors documented in this section of the Error Guide are for general SQL
  15279. database message errors.
  15280.  
  15281. 10901 MES CLM Meldungsdatei wurde nicht gefunden
  15282.  
  15283.       Reason: The SQLBase system cannot find the file MESSAGE.SQL.
  15284.  
  15285.       Remedy: Determine why the SQLBase system could not find the MESSAGE.SQL
  15286.           file and correct the problem.
  15287.  
  15288. 10902 MES COM Meldungsdatei kann nicht ge÷ffnet werden
  15289.  
  15290.       Reason: The SQLBase system cannot open the MESSAGE.SQL file.
  15291.  
  15292.       Remedy: Determine and correct the cause of the open file failure.
  15293.           Verify that the specified file exists.  Verify the number of
  15294.           files allowed open for the operating system permits the
  15295.           additional file, that is, check the FILES= configuration
  15296.           parameter setting.
  15297.  
  15298. 10903 MES IXC Unbrauchbare Meldungsdatei: Ungⁿltige X-Koordinate
  15299.  
  15300.       Reason: An invalid X-coordinate has been specified in the MESSAGE.SQL
  15301.           file.  The X-coordinate and Y-coordinate specify the screen
  15302.           coordinates for certain messages.
  15303.  
  15304.       Remedy: Correct the invalid X-coordinate.
  15305.  
  15306. 10904 MES IYC Unbrauchbare Meldungsdatei: Ungⁿltige Y-Koordinate
  15307.  
  15308.       Reason: An invalid Y-coordinate has been specified in the MESSAGE.SQL
  15309.           file.  The X-coordinate and Y-coordinate specify the screen
  15310.           coordinates for certain messages.
  15311.  
  15312.       Remedy: Correct the invalid Y-coordinate.
  15313.  
  15314. 10905 MES IMP Unbrauchbare Meldungsdatei: Ungⁿltige Meldungsparameter
  15315.  
  15316.       Reason: An invalid message parameter has been specified in the
  15317.           MESSAGE.SQL file.  The message parameters explain how the
  15318.           message is used.    Currently, the only valid message parameters
  15319.           are S, T, X, and Y.
  15320.  
  15321.       Remedy: Correct the invalid message parameter.
  15322.  
  15323. 10906 MES ISV NUR INTERN VERWENDET: Unbrauchbare Meldungsdatei: Ungⁿltiger Statuswert
  15324.  
  15325.       Reason: This is error is only used internally by the SQLBase system.
  15326.  
  15327.       Remedy: None.  This error code should never occur.  If you get this
  15328.           error, contact your local Gupta Technologies certified
  15329.           technical support center.
  15330.  
  15331. 10907 MES IMI Unbrauchbare Meldungsdatei: Ungⁿltige Meldungskennung
  15332.  
  15333.       Reason: An invalid message id has been specified in the MESSAGE.SQL
  15334.           file.
  15335.  
  15336.       Remedy: Correct the invalid message id.
  15337.  
  15338. 10908 MES MMC Unbrauchbare Meldungsdatei: Meldungskommentar fehlt
  15339.  
  15340.       Reason: A message comment is missing from the MESSAGE.SQL file.
  15341.  
  15342.       Remedy: Correct the MESSAGE.SQL file by adding the appropriate message
  15343.           comment.
  15344.  
  15345. 10909 MES CAM Meldungstabelle kann nicht zugewiesen werden
  15346.  
  15347.       Reason: This error is currently undocumented.
  15348.  
  15349.       Remedy: Contact your local Gupta Technologies certified technical
  15350.           support center for assistance.
  15351.  
  15352. 10910 MES EOF Unbrauchbare Meldungsdatei: Unerwartetes Ende der Datei
  15353.  
  15354.       Reason: This error is currently undocumented.
  15355.  
  15356.       Remedy: Contact your local Gupta Technologies certified technical
  15357.           support center for assistance.
  15358.  
  15359. 10911 MES MEQ Unbrauchbare Meldungsdatei: Fehlendes Endezeichen
  15360.  
  15361.       Reason: This error is currently undocumented.
  15362.  
  15363.       Remedy: Contact your local Gupta Technologies certified technical
  15364.           support center for assistance.
  15365.  
  15366. 10912 MES EEC Unbrauchbare Meldungsdatei: Ende des Kommentars wurde erwartet
  15367.  
  15368.       Reason: This error is currently undocumented.
  15369.  
  15370.       Remedy: Contact your local Gupta Technologies certified technical
  15371.           support center for assistance.
  15372.  
  15373. 10913 MES IES Unbrauchbare Meldungsdatei: Ungⁿltige Abbruchsequenz
  15374.  
  15375.       Reason: This error is currently undocumented.
  15376.  
  15377.       Remedy: Contact your local Gupta Technologies certified technical
  15378.           support center for assistance.
  15379.  
  15380. 10914 MES MMS Unbrauchbare Meldungsdatei: Meldungszeichenkette fehlt
  15381.  
  15382.       Reason: This error is currently undocumented.
  15383.  
  15384.       Remedy: Contact your local Gupta Technologies certified technical
  15385.           support center for assistance.
  15386.  
  15387. 10915 MES MMV SQLBase und MESSAGE.SQL haben unterschiedliche Versionen
  15388.  
  15389.       Reason: The MESSAGE.SQL file attempting to be used is not the proper
  15390.           version, that is, the software version number found on line
  15391.           one of MESSAGE.SQL does not match the SQLBase version number.
  15392.  
  15393.       Remedy: Use the correct version of the MESSAGE.SQL file for this
  15394.           particular version of SQLBase.
  15395.  
  15396.  
  15397. The errors documented in this section of the Error Guide are for HASH index
  15398. errors.
  15399.  
  15400. 11001 HSH CSS Hash-Bereich kann nicht zugewiesen werden
  15401.  
  15402.       Reason: This error is currently undocumented.
  15403.  
  15404.       Remedy: Contact your local Gupta Technologies certified technical
  15405.           support center for assistance.
  15406.  
  15407.  
  15408. The errors documented in this section of the Error Guide are for Access Path
  15409. Analysis errors.
  15410.  
  15411. 11101 APA CNA Arbeitsbereich kann nicht zugewiesen werden
  15412.  
  15413.       Reason: This error is currently undocumented.
  15414.  
  15415.       Remedy: Contact your local Gupta Technologies certified technical
  15416.           support center for assistance.
  15417.  
  15418. 11102 APA OOM Kein Speicherplatz mehr auf dem Server vorhanden
  15419.  
  15420.       Reason: Running out of memory while doing query optimization
  15421.  
  15422.       Remedy: Add more memory to the server station or split  the  query  to
  15423.           simpler queries and try again.
  15424.  
  15425.  
  15426. 11103 APA TMB Zu viele Booleans in der Abfrage (Query)
  15427.  
  15428.       Reason: Not enough memory at the database engine to perform the
  15429.           necessary query optimization.
  15430.  
  15431.       Remedy: Reduce the number of boolean expressions in the query,
  15432.           especially the size of any IN list.
  15433.  
  15434.  
  15435.  
  15436. 11201 GFS ICF Schwerer SQLBase System Fehler (GFS ICF)
  15437.  
  15438.       Reason: This is a Fatal Error.
  15439.  
  15440.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  15441.           If a FAIL.SQL file is available, then save it.  Attempt to
  15442.           reproduce the problem via a SQL script, scenario, or using the
  15443.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  15444.           Contact your local Gupta certified technical support center.
  15445.  
  15446. 11202 GFS IVF Schwerer SQLBase System Fehler (GFS IVF)
  15447.  
  15448.       Reason: This is a Fatal Error.
  15449.  
  15450.       Remedy: Stop all database operations and run a CHECK DATABASE operation.
  15451.           If a FAIL.SQL file is available, then save it.  Attempt to
  15452.           reproduce the problem via a SQL script, scenario, or using the
  15453.           NETLOG utility (see the DBA Guide for how to produce a NETLOG).
  15454.           Contact your local Gupta certified technical support center.
  15455.  
  15456. 11203 GFS CAV Kein Speicherplatz mehr auf Datenbank-Computer
  15457.  
  15458.       Reason: Not enough memory at the database engine to perform the
  15459.           requested task.
  15460.  
  15461.       Remedy: Check available memory at the database computer.    Attempt to
  15462.           make more memory available.  To make more memory available for
  15463.           the database engine, you can reduce size of the CACHE.
  15464.  
  15465. 11204 GFS CAD Kein Speicherplatz mehr auf Datenbank-Computer
  15466.  
  15467.       Reason: Not enough memory at the database engine to perform the
  15468.           requested task.
  15469.  
  15470.       Remedy: Check available memory at the database computer. Attempt to
  15471.           make more memory available.  To make more memory available for
  15472.           the database engine, you can reduce size of the CACHE.
  15473.  
  15474.  
  15475. 1.0.0 SQLBase Errors Guide
  15476. The errors documented in this section of the Error Guide are for catalog
  15477. command parsing errors.  These errors generally occur during the compilation
  15478. of a catalog command and the statement violates the syntax for that catalog
  15479. command.
  15480.  
  15481. 11301 CAC CNE Befehl fehlerhaft abgeschlossen
  15482.  
  15483.       Reason: The end of a catalog command ended unexpectedly.
  15484.  
  15485.       Remedy: Verify that the catalog command syntax is correct and that the
  15486.           statement was not somehow truncated.
  15487.  
  15488. 11302 CAC ICC Ungⁿltiger CATALOG Befehl
  15489.  
  15490.       Reason: The next keyword immediately following a CATALOG verb is
  15491.           invalid.
  15492.  
  15493.       Remedy: Verify that the keyword immediately following the CATALOG verb
  15494.           keyword is either TABLE, COLUMN, INDEX, KEYS, RELS, TABAUTH,
  15495.           or COLAUTH.
  15496.  
  15497. 11303 CAC MTB Fehlendes TBNAME Schlⁿsselwort
  15498.  
  15499.       Reason: The TBNAME is missing from a TABLE statement.
  15500.  
  15501.       Remedy: Verify that the TBNAME exists and that it is correctly
  15502.           entered after the TABLE key word.
  15503.  
  15504. 11304 CAC UIO Unbekannte Input Option
  15505.  
  15506.       Reason: An unknown input option is encountered
  15507.  
  15508.       Remedy: Check the syntax of the statement to determine the correct
  15509.           input options.
  15510.  
  15511. 11305 CAC ATY Authority Schlⁿsselwort ist schon definiert
  15512.  
  15513.       Reason: AUTHORITY key word has been specified and cannot be specified
  15514.           again.
  15515.  
  15516.       Remedy: Check the statement to determine where the duplicate is and
  15517.           reenter again.
  15518.  
  15519. 11306 CAC CTR Creator Schlⁿsselwort wurde schon definiert
  15520.  
  15521.       Reason: CREATOR key word has been specified and cannot be specified
  15522.           again.
  15523.  
  15524.       Remedy: Check the statement to determine where the duplicate is and
  15525.           reenter again.
  15526.  
  15527. 11307 CAC GEE Grantee Schlⁿsselwort wurde schon definiert
  15528.  
  15529.       Reason: GRANTEE key word has been specified and cannot be specified
  15530.           again.
  15531.  
  15532.       Remedy: Check the statement to determine where the duplicate is and
  15533.           reenter again.
  15534.  
  15535. 11308 CAC QNS Qualifier nicht unterstⁿtzt
  15536.  
  15537.       Reason: Qualifier key word not supported in SqlBase
  15538.  
  15539.       Remedy: Check the statement, remove the option and reenter again.
  15540.  
  15541. 11309 CAC TYP Type Schlⁿsselwort wurde schon definiert
  15542.  
  15543.       Reason: TYPE key word has been specified and cannot be specified
  15544.           again.
  15545.  
  15546.       Remedy: Check the statement to determine where the duplicate is and
  15547.           reenter again.
  15548.  
  15549. 11310 CAC UTT Unbekannter Table Typ
  15550.  
  15551.       Reason: An unknown table type is encountered
  15552.  
  15553.       Remedy: Check the syntax of the statement to determine the correct
  15554.           table types
  15555.  
  15556. 11311 CAC UIT Unbekannter Index Typ
  15557.  
  15558.       Reason: An unknown index type is encountered
  15559.  
  15560.       Remedy: Check the syntax of the statement to determine the correct
  15561.           index types
  15562.  
  15563. 11312 CAC UOO Unbekannte Output Option
  15564.  
  15565.       Reason: An unknown output option is encountered
  15566.  
  15567.       Remedy: Check the syntax of the statement to determine the correct
  15568.           output options.
  15569.  
  15570. 11313 CAC OOM Kein Speicherplatz mehr auf dem Datenbank Computer
  15571.  
  15572.       Reason: Not enough memory at the database engine to perform the
  15573.           compilation.
  15574.  
  15575.       Remedy: Check available memory at database computer.  Attempt to
  15576.           make more memory available.  To make more memory available for
  15577.           the database engine, you can reduce the size of CACHE.
  15578.  
  15579. 11314 CAC UAO Unbekannte Authority Option
  15580.  
  15581.       Reason: An unknown authority option is encountered
  15582.  
  15583.       Remedy: Check the syntax of the statement to determine the correct
  15584.           authority options.
  15585.  
  15586. 11315 CAC UOC Unbekannte Order by Column
  15587.  
  15588.       Reason: An unknown order by column is encountered
  15589.  
  15590.       Remedy: Check the syntax of the statement to determine the correct
  15591.           order by column.
  15592.  
  15593. 11316 CAC SEL Output Option wurde mehrmals eingegeben
  15594.  
  15595.       Reason: output option is specified more than once
  15596.  
  15597.       Remedy: Check the syntax of the statement to determine where the
  15598.           duplicate is.
  15599.  
  15600. 11317 CAC CNS Dieser Befehl ist nicht unterstⁿtzt
  15601.  
  15602.       Reason: This command is currently not supported
  15603.  
  15604.       Remedy: Check Gupta Technologies Inc. when this command will be
  15605.           supported.
  15606.  
  15607. 11318 CAC MMI Fehlender oder falscher Input Parameter
  15608.  
  15609.       Reason: mandatory input parameter(s) is not present
  15610.  
  15611.       Remedy: Check the syntax of the statement to determine which parameter
  15612.           is missing and reenter the command.
  15613.  
  15614. 11319 CAC UCT Unbekannter Column Typ
  15615.  
  15616.       Reason: An unknown column type is encountered
  15617.  
  15618.       Remedy: Check the syntax of the statement to determine the correct
  15619.           column types
  15620.  
  15621. 11320 CAC ITB Ungⁿltiges Zeichen in TBNAME
  15622.  
  15623.       Reason: The TBNAME contains an invalid character
  15624.  
  15625.       Remedy: Verify that the characters used for TBNAME are correctly
  15626.           entered.
  15627.  
  15628. 11321 CAC MCK Fehlendes Komma in der Liste der Optionen
  15629.  
  15630.       Reason: The comma is missing from an option list
  15631.  
  15632.       Remedy: Verify that the comma exists and that it is correctly
  15633.           entered in the option list.
  15634.  
  15635. 11322 CAC MAO Fehlende Authority Option
  15636.  
  15637.       Reason: Authority option is expected while separator is encountered
  15638.           in the option list
  15639.  
  15640.       Remedy: Verify that the authority options are correctly entered in
  15641.           the option list.
  15642.  
  15643. 11323 CAC NSC Keine Select Column definiert
  15644.  
  15645.       Reason: SELECT key word is specified while no select column is seen
  15646.  
  15647.       Remedy: Verify that the select columns are correctly entered.
  15648.  
  15649. 11324 CAC NOB Fehlende ORDER BY Column
  15650.  
  15651.       Reason: ORDER BY key word is specified while no order by column is
  15652.           seen
  15653.  
  15654.       Remedy: Verify that the order by columns are correctly entered.
  15655.  
  15656. 11325 CAC WNA Wild card characters nicht erlaubt
  15657.  
  15658.       Reason: Wild card characters not allowed here
  15659.  
  15660.       Remedy: Verify that the wild card not used and reenter again.
  15661.  
  15662. 11326 CAC TBN TBNAME Schlⁿsselwort wurde schon definiert
  15663.  
  15664.       Reason: TBNAME key word has been specified and cannot be specified
  15665.           again.
  15666.  
  15667.       Remedy: Check the statement to determine where the duplicate is and
  15668.           reenter again.
  15669.  
  15670. 11327 CAC IXN IXNAME Schlⁿsselwort wurde schon definiert
  15671.  
  15672.       Reason: IXNAME key word has been specified and cannot be specified
  15673.           again.
  15674.  
  15675.       Remedy: Check the statement to determine where the duplicate is and
  15676.           reenter again.
  15677.  
  15678. 11328 CAC SYN SYNNAME Schlⁿsselwort wurde schon definiert
  15679.  
  15680.       Reason: SYBNAME key word has been specified and cannot be specified
  15681.           again.
  15682.  
  15683.       Remedy: Check the statement to determine where the duplicate is and
  15684.           reenter again.
  15685.  
  15686. 11329 CAC SCR SYNCREATOR Schlⁿsselwort wurde schon definiert
  15687.  
  15688.       Reason: SYBCREATOR key word has been specified and cannot be specified
  15689.           again.
  15690.  
  15691.       Remedy: Check the statement to determine where the duplicate is and
  15692.           reenter again.
  15693.  
  15694. 11330 CAC OCS ORDER BY Column nicht gefunden im Select Befehl
  15695.  
  15696.       Reason: an ORDER BY column is found not in select list
  15697.  
  15698.       Remedy: Check the statement to determine which ORDER BY column is not
  15699.           in select list; correct the statement and reenter again.
  15700.  
  15701. 11331 CAC MEL Fehlendes gleich (=) oder LIKE Schlⁿsselwort
  15702.  
  15703.       Reason: An equal(=) keyword or LIKE keyword is missing
  15704.  
  15705.       Remedy: Check the statement to determine which part of the statement
  15706.           is missing the expected keyword.    Correct and reenter again.
  15707.  
  15708.  
  15709. 1.0.0 SQLBase Errors Guide
  15710. The errors documented in this section of the Error Guide are for errors that
  15711. can occur when the database is performing direct file system access.
  15712.  
  15713. 11401 DFS EOF Schwerer Fehler. Kann EOF (End of File) des DFS Files nicht finden
  15714.  
  15715.       Reason: The database system failed to locate the end of a DFS file.
  15716.           This is a Fatal Error.
  15717.  
  15718.       Remedy: None.  This error code should never occur.  If you get this
  15719.           error, contact your local Gupta Technologies certified
  15720.           technical support center.
  15721.  
  15722.  
  15723. 11402 DFS VMI Kann keine Volume Mapping Information (DFS File) erhalten
  15724.  
  15725.       Reason: The database system failed to get the volume mapping information
  15726.           of a DFS file.  This is a Fatal Error.
  15727.  
  15728.       Remedy: None.  This error code should never occur.  If you get this
  15729.           error, contact your local Gupta Technologies certified
  15730.           technical support center.
  15731.  
  15732.  
  15733. 11403 DFS VMF Schwerer Fehler: Volume ist voll
  15734.  
  15735.       Reason: The database system failed to write data to a DFS file because
  15736.           volume is full of the DFS file.  This is a Fatal Error.
  15737.  
  15738.       Remedy: Additional storage space for the DFS file.
  15739.  
  15740.  
  15741. 11404 DFS EXP Kann DFS File nicht erweitern
  15742.  
  15743.       Reason: The database system encountered unrecoverable failure in the
  15744.           process of extending a DFS file.    This is a Fatal Error.
  15745.  
  15746.       Remedy: None.  This error code should never occur.  If you get this
  15747.           error, contact your local Gupta Technologies certified
  15748.           technical support center.
  15749.  
  15750.  
  15751. 11405 DFS OSP Kann DFS File nicht erweitern
  15752.  
  15753.       Reason: The database system failed to write data to a DFS file because
  15754.           there is no free space available.
  15755.  
  15756.       Remedy: Additional storage space for the DFS file.
  15757.  
  15758.  
  15759. 11406 DFS OOM Kein Speicherplatz mehr vorhanden (Out of memory)
  15760.  
  15761.       Reason: Out of memory during DFS process.
  15762.  
  15763.       Remedy: Additional memory for database server.
  15764.  
  15765.  
  15766. 1.0.0 SQLBase Errors Guide
  15767. The errors documented in this section of the Error Guide are for errors
  15768. occurred in temporary file manipulation.
  15769.  
  15770. 11501 TMP OOM Kein Speicherplatz mehr vorhanden fⁿr temporΣre Files
  15771.  
  15772.       Reason: Not enough memory for temporary file manipulation.
  15773.  
  15774.       Remedy: Check memory availability at database server workstation.
  15775.  
  15776.  
  15777.  
  15778.